2
npm 스크립트의 작업 디렉토리 변경
Q : npm이 스크립트를 실행하는 컨텍스트를 변경할 수 있습니까? 내가 원하는 것은 다음과 같습니다. "scripts": { "test": "gulp mocha", "pre-install": "./deps/2.7/cpython/configure --prefix=$(pwd)/build --exec-prefix=$(pwd)/build && make -C deps/2.7/cpython && make -C deps/2.7/cpython install", "install": "node-gyp rebuild" }, 분명히 cd deps/2.7/cpython/ && ./configureUNIX와 유사한 시스템에서는 작동하지만 Windows에서는 작동하지 않습니다. 이유 : 문제 …