Open seikichi opened 7 years ago
npm build doesn't run the script named build in package.json. This is because npm build is actually already an internal command, as described in the docs.
npm build
build
Fix the document by replacing npm build with npm run build.
npm run build
npm build
doesn't run the script namedbuild
in package.json. This is because npm build is actually already an internal command, as described in the docs.Fix the document by replacing
npm build
withnpm run build
.