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}
{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 --help
Development
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)
np
Schematics 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": []
}