Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
336 views
in Technique[技术] by (71.8m points)

node.js - Custom script in NPM package.json is ignored, runs as standalone

in my package.json I have these scripts:

"scripts": 
{
 "lint": "./node_modules/.bin/eslint src",
 "build": "npm run clean && npm run dev && npm run prod",
 "tsc": "./node_modules/.bin/tsc",
 "dev": "./node_modules/.bin/webpack --config webpack.dev.js",
 "prod": "./node_modules/.bin/webpack --config webpack.prod.js",
 "clean": "del /q inet-henge*.js* dist",
 "watch": "./node_modules/.bin/webpack --config webpack.dev.js --watch",
 "postinstall": "copy inet-henge.js "..\flask\customer_topology\static""
}

But for some reason postinstall is completely ignored when i run npm run build. When I run it as standalone script, it runs, the file is copied to the new location. Path is correct. What could be the problem, I am on Windows

question from:https://stackoverflow.com/questions/65885240/custom-script-in-npm-package-json-is-ignored-runs-as-standalone

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

post<x> runs after <x> so postinstall runs after install and if you want a script to run after build it should be called postbuild See https://docs.npmjs.com/cli/v6/using-npm/scripts for more details.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...