norma-markup
v0.5.7
Published
Markup package for Norma build tool
Downloads
70
Keywords
Readme
norma-markup
Markup Package for Norma Build Tool
To use add the following to your norma.json:
"tasks": {
"markup": {
"src": "test/**/*",
"dest": "out"
}
}
The src
variable is where your test files are located.
The dest
variable is where you want your files to go
Extensions
You can also specify what types of files you want copied by using the ext
key like so:
"tasks": {
"markup": {
"src": "test/**/*",
"dest": "out",
"ext": ["html", "js"]
}
}
Minification
This package also supports minification of markup by adding a minify: true key and value to the object like so:
"tasks": {
"markup": {
"src": "test/**/*",
"dest": "out",
"ext": ["html", "js"],
"minify": true
}
}