lasagnia

1.0.2 • Public • Published

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!

Package Sidebar

Install

npm i lasagnia

Weekly Downloads

0

Version

1.0.2

License

ISC

Unpacked Size

4.36 kB

Total Files

8

Last publish

Collaborators

  • nickshulhin