1
nodemon이 실행 중일 때 다른 작업은 보류 중이며 실행되지 않는 것처럼 보입니다. 어떻게 둘 다 사용할 수 있습니까? 또는 nodemon을 사용하여 파일을 적게보고 컴파일 할 수 있는지 여부 여기 grunt-contrib-less와 grunt-nodemon을 모두 사용하십시오.
내 Gruntfile.js입니다 :module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
nodemon: {
dev: {
options: {
file: 'app.js',
nodeArgs: ['--debug'],
env: {
PORT: '3000'
}
}
}
},
less: {
development: {
options: {
paths: ['./public/less'],
yuicompress: true
},
files: {
'./public/css/test.css': './public/less/test.less'
}
}
},
watch: {
files: "./public/less/*.less",
tasks: ['less']
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-nodemon');
grunt.registerTask('default', ['less','watch']);
};
음 ... 'grunt nodemon'과'grunt watch' 작업을 별도의 터미널에서 실행해야 할 수도 있습니다. 그들은 둘 다 앉아서 변화를 기다린다. 그래서 나는 다른 사람들과 동시에 어떻게 달릴 수 있는지 모른다. – jakerella