私は grunt-contrib-compass@0.6.0 を実行していましたが、このエラーで中止されました:
node_modules/grunt-contrib-compass/node_modules/tmp/lib/tmp.js:261
throw err;
^
Error: socket hang up
at createHangUpError (http.js:1476:15)
at Socket.socketCloseListener (http.js:1526:23)
at Socket.emit (events.js:95:17)
at TCP.close (net.js:465:12)
grunt-contrib-compass@1.0.1 にアップグレードしたところ、終了しなくなりましたが、次のエラー/警告が生成されます (これが発生すると、致命的と表示されていても終了しなくなりました)
Fatal error: socket hang up
Fatal error: socket hang up
私が推測できるのは、エラー処理が改善された同じ問題です。このエラーを投げているものからより良い情報を得る方法はありますか? これは私の Gruntfile のコンパス部分です
compass: {
options: {
sassDir: '<%= yeoman.app %>/styles',
cssDir: '.tmp/styles',
generatedImagesDir: '.tmp/images/generated',
imagesDir: '<%= yeoman.app %>/images',
javascriptsDir: '<%= yeoman.app %>/scripts',
fontsDir: '<%= yeoman.app %>/fonts',
importPath: '<%= yeoman.app %>/bower_components',
httpImagesPath: '/images',
httpGeneratedImagesPath: '/images/generated',
httpFontsPath: 'styles/fonts',
relativeAssets: false,
trace: true
},
dist: {},
server: {
options: {
debugInfo: true
}
}
},