0.0.41 ⢠Published 6 years ago
@mark-npm/schema v0.0.41
AgSchematics
Custom schematics implementation.
How to use
šļø Add to project
npm install @mark-npm/schema --save-dev
yarn add @mark-npm/schema --devš Generate component
ng generate @mark-npm/schema:{SCHEMA_NAME}
ng g @mark-npm/schema:{SCHEMA_NAME}š Currenty supported {SCHEMA_NAME}
- āļø ag-page
- āļø ag-sifrant
- ā ag-modal
When generating schemas, all standard flags are available. To see all flags use following command
ng g c --helpDevelopment
Basics
š Clone repository
git clone https://github.com/arupnik/ag-schematics.gitš Install dependencies
npm install
yarn installš Create new schema
schematics blank {name}New entry will be added to collection.json file.
š Build
npm run buildš Publish package
npm login (enter npmjs.org credentials)
npSchematics debugging
In VSCode, open launch.json file and add next entry
{
"type": "node",
"request": "launch",
"name": "Debug schematic",
"program": "${workspaceFolder}/node_modules/@angular-devkit/schematics-cli/bin/schematics.js",
"args": [
".:ag-page",
"--name=test",
"--module=common.module.ts",
"--customPath=src/app/blabl"
],
"outFiles": []
}