webkit - How does packages become available on client in an angular project -
i started angular project , had different things make packages available on client. give examples different types of packages:
@angular
: listed inpackage.json
.moment
: listed inpackage.json
, had import inangular-cli.json
inscripts
section"../node_modules/moment/min/moment.min.js"
,simpl-schema
: listed inpackage.json
, had add types via dts-gen.@angular
neithe included inangular-cli.json
nor inindex.html
.
whats difference between moment
, other 2 packages? why have include moment.js
separately?
Comments
Post a Comment