Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anfibiacreativa/plat-schematics
Schematics to add platform structure and aliases to mono repo projects
https://github.com/anfibiacreativa/plat-schematics
angular angular-cli angular-schematics npm
Last synced: about 10 hours ago
JSON representation
Schematics to add platform structure and aliases to mono repo projects
- Host: GitHub
- URL: https://github.com/anfibiacreativa/plat-schematics
- Owner: anfibiacreativa
- Created: 2019-05-18T12:20:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-05T23:02:01.000Z (about 2 years ago)
- Last Synced: 2024-10-06T01:22:19.802Z (4 months ago)
- Topics: angular, angular-cli, angular-schematics, npm
- Language: TypeScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plat-schematics
Schematics to add platform structure and aliases to mono repo projectsSteps to install, after cloning the repo (with npm)
1. Move to the plat-structure folder and install the package
```bash
cd plat-structure && npm install
```2. Build the package with
```bash
npm run build
```3. Link this project to your node version, so you don't have to install it as part of the project it will be executed on, running
`npm link`You're set! Now you can exectute it from an Angular project, by linking it to this schematics project and generating the aliased schematics, like this
```bash
npm link plat-structure
ng generate plat-structure:plat-aliases --name=[name-of-your-project] --path=projects/[path-to-your-project]/src/app
```