cgross / generator-cg-angular15

Yeoman Generator for Enterprise Angular 1.5 Projects with Typescript, Webpack, and Sass.
MIT License
33 stars 3 forks source link

Missing output of "npm build" #2

Closed martin-s closed 7 years ago

martin-s commented 7 years ago

I'm actually not really up-to-date with all new updates you added, but I really appreciate the removal of other dependencies, like bower, grunt. When running command "npm build" on a fresh new project (no changes made), I would expect a dist-folder with a bundle.js in it. The command itself runs fine, just returns an "ok" at the end. Can you help out? A command "npm start" runs the webdev-server.

cgross commented 7 years ago

Try "npm run build". Build is a general npm command and you need "npm run build" to invoke the script alias.

On Aug 28, 2016, at 12:52 PM, martin-s notifications@github.com wrote:

I'm actually not really up-to-date with all new updates you added, but I really appreciate the removal of other dependencies, like bower, grunt. When running command "npm build", I would expect a dist-folder with a bundle.js in it. The command itself runs fine, just return an "ok" at the end. Can you help out? A command "npm start" runs the webdev-server.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

martin-s commented 7 years ago

Thanks, good hint. Missed the keyword. Issue can be closed.