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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -