0.2.0 • Published 6 months ago

@lucasdinonolte/lazy-cli v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

Lazy CLI

Because I have better things to do than remembering how to set up eslint or prettier for the 1000th time.

Using global snippets

First install the CLI globally.

npm install -g @lucasdinonolte/lazy-cli

Then you're ready to access the built-in snippets from anywhere by Using

lazy

Project specific usage

You can also point lazy to a custom snippets folder inside of a project.

Start by installing lazy into your project as a dev dependency.

npm install --save-dev @lucasdinonolte/lazy-cli

Next add lazy to your project’s scripts.

...
  "scaffold": "lazy ./path/to/snippetsFoler",
...