preboot / angular-library-seed

Get started building an Angular library quickly.
MIT License
111 stars 22 forks source link

prepublish error #2

Closed JanickRoss closed 8 years ago

JanickRoss commented 8 years ago

I have now an error when I try to prepublish because it search \src\app\components\sample.scss.js:

compilation_error

NathanWalker commented 8 years ago

for now, don't use make.js... I'll update the docs soon for that. In meantime, just use:

tsc

to build. And actually don't add a prepublish script to package.json... Just run that manually before publishing (without a prepublish) script.

I'll cc @jkuri here and see if he could provide latest details on bundling 3rd party libs for angular cli. I believe much has changed in regards to that lately.

jkuri commented 8 years ago

Yes, make.js is deprecated. Actually 3rd party lib bundles are not needed anymore. You can find more information how to get 3rd party lib working with angular-cli here.