Angular 4 components - npm package
Develop your components inside "src" folder
This comand will compile the package, generate the bundles etc and place them in the "dist" folder
npm run build
Congratulations! Your library is available in dist folder ready to be published to npm.
cd /dist
npm publish
npm install @geographica/latitude
Merge latitude assets folder with your projects assets, modify your angular-cli.json file like bellow
"assets": [
{ "glob": "**/*", "input": "../node_modules/@geographica/latitude/assets/", "output": "./assets/" },
]