Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bolasblack/c4g
My schematics
https://github.com/bolasblack/c4g
Last synced: 11 days ago
JSON representation
My schematics
- Host: GitHub
- URL: https://github.com/bolasblack/c4g
- Owner: bolasblack
- Created: 2019-06-24T03:11:48.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-12-08T22:06:37.000Z (about 1 month ago)
- Last Synced: 2024-12-08T23:17:16.996Z (about 1 month ago)
- Language: TypeScript
- Size: 579 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @c4/g
## Plans
## Testing
To test locally:
```bash
# cd project and create link
cd /path/to/this/project
yarn link# install this project globally and change to symlink
yarn global add file:$PWD
cd $(yarn global dir)
yarn link @c4/g# install schematics-cli globally
yarn global add @angular-devkit/schematics-cli
```and use the `schematics` command line tool.
Check the documentation with
```bash
schematics --help
```Create a new schematic with command:
```bash
schematics @c4/g:schematic --name=
```## Unit Testing
`yarn test` will run the unit tests, using Jest as a runner and test framework.
## Development
Install [`entr`](https://github.com/eradman/entr/) at first, then run `yarn watch`.
## Publishing
To publish, simply do:
```bash
yarn build
yarn publish
```