1.0.0 • Published 4 years ago
@ngneat/lit-file-generator v1.0.0
🦄 Lit File Generator
A lit generator for a component, directive, and controller.
Install the library:
npm i @ngneat/lit-file-generator -g
litgenOr via npx:
npx @ngneat/lit-file-generator litgen
npx @ngneat/lit-file-generator litgen component name
npx @ngneat/lit-file-generator litgen directive name
npx @ngneat/lit-file-generator litgen controller nameBase Path:
By default, the directory prompt is set to the current directory.
To change it, add to the root package.json the following config:
"lit": {
"basePath": "./src/app/"
}The path should be relative to the package.json.
Component Prefix:
The default component selector prefix is app. You can change it by setting the prefix option:
"lit": {
"prefix": "lit"
}