@ngcx/contrib
v0.0.5
Published
This project aims to provide reusable solutions for Angular projects.
Downloads
2
Readme
Overview
This project aims to provide reusable solutions for Angular projects.
Getting Started
Try it out
ng new sample-project; cd sample-project
npm i @ngcx/contrib
app.module.ts
import { HeaderModule } from '@ngcx/contrib';
// ...
imports: [ HeaderModule ]
app.component.html
<app-header>I'm Contributing!</app-header>
Publishing
specify exports
- Export the item(s) (e.g. components, pipes, services) to be made available from ./public_api.ts
publish to npm
npm version patch
to increment the version (more info)npm run packagr
to generate the npm packagenpm publish dist --access public
to publish (more info)
tag the release
git tag <version>
git push --tags
What's Available
coming soon
Contributing
If you'd like to contribute to this project, reach out to Adam Clark.
Dependencies
- ng-packagr - generates our npm package