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
Post a Comment