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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -