norma-markup

0.5.7 • Public • Published

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
  }
}

Readme

Keywords

Package Sidebar

Install

npm i norma-markup

Weekly Downloads

2

Version

0.5.7

License

MIT

Last publish

Collaborators

  • jbaxleyiii
  • richarddubay
  • bjwiley2
  • newspring