javascript - how to get debugging/verbose information while running package.json scripts? -


i have following scripts in package.json file

  "scripts": {     "start": "watchify -o js/bundle.js -v -d .",     "build": "browserify . | uglifyjs -cm > js/bundle.min.js"   }, 

when run npm build, command executes , moves fresh new line in terminal , script has'nt been built.

to figure out problem, how can more verbose/debugging info running command?

have tried following command?

npm build --verbose


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -