1.0.2 • Published 6 years ago

lasagnia v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

Lasagnia 🥧

V1.0

Build Status

NPM module which helps with project file integrity check. Lasagnia checks for required files/folders declared in configuration file.

Build Setup

In order to add Lasagnia to your project, run:

npm i --save-dev lasagnia

Lasagnia requires .recipe.json configuration file in your root directory.

Example of .recipe.json configuration file:

{
  "project": {
    "folders": [
      "lib",
      "node_modules",
      "test",
      "test/lib"
    ],
    "files": [
      "lib/utils.js",
      "test/lib/utilsTest.js"
    ]
  }
}

To add Lasagnia as a part of Node automated script execution, add to your package.json:

{
  "scripts": {
    "lasagnia_check": "lasagnia"
  }
}

And after you will be able to run Lasagnia check with:

npm run lasagnia_check

Feel free to contribute!

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago