2016-08-03 1 views
0
onchange: process completed with code 0 
onchange: change to css\myfile.css 
onchange: executing "npm run build:css" 
onchange: unlink to css\.#myfile.css 
onchange: killing process and restarting 
onchange: process exited with SIGTERM 
onchange: executing "npm run build:css" 
npm ERR! Windows_NT 6.1.7601 
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "prefix" "-g" 
npm ERR! node v4.2.4 
npm ERR! npm v2.14.12 
npm ERR! code EPIPE 
npm ERR! errno EPIPE 
npm ERR! syscall write 

npm ERR! write EPIPE 
npm ERR! 
npm ERR! If you need help, you may report this error at: 
npm ERR!  <https://github.com/npm/npm/issues> 

npm ERR! Please include the following file with any support request: 
npm ERR!  C:\path\to\project\npm-debug.log 

답변

0

css\.#myfile.css은 Emacs 잠금 파일이며 원본 파일이 저장되면 잠금 파일이 삭제됩니다.

;; Disable lock files .# as this is for single-user configuration 
(setq create-lockfiles nil) 

를 통해 .emacs/init.el에서 잠금 파일을 비활성화하면 일어나는 오류를 중지.

관련 문제