Estou executando o Lion 10.9.2 com nodejs v0.10.26
Eu quero configurar uma compilação automatizada em arquivos sass e uma recarga ao vivo com grunt, nada complicado, mas ...
Ao executar grunt watch
, recebo o seguinte erro
(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.
util.js:35
var str = String(f).replace(formatRegExp, function(x) {
^
RangeError: Maximum call stack size exceeded
aqui está o Gruntfile.js
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
files: {
'assets/css/styles.css': 'assets/sass/styles.scss'
}
}
},
watch: {
all: {
files: 'index.html', // Change this if you are not watching index.html
options: {
livereload: true // Set livereload to trigger a reload upon change
}
},
css: {
files: [ 'assets/sass/**/*.scss' ],
tasks: [ 'sass' ],
options: {
spawn: false
}
},
options: {
livereload: true // Set livereload to trigger a reload upon change
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('watch', [ 'watch']);
grunt.registerTask('default', [ 'sass', 'watch' ]);
};
e aqui está o package.json
{
"name": "application",
"version": "0.0.1",
"private": true,
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-sass": "~0.7.3"
}
}
node.js
gruntjs
grunt-contrib-watch
denisjacquemin
fonte
fonte
grunt-bower-concat
plugin estava me dando essa saída.Só tive esse problema. Resolvido removendo
grunt.registerTask('watch', [ 'watch']);
fonte
Acabei de corrigir um erro semelhante "Recursive process.nextTick detectado" causado por comando: grunt server
A solução? Use sudo grunt servir ao invés
fonte
sudo
não deve ser usado a menos que seja algo que realmente esteja mudando seu sistema. Parece que você fez, osudo npm install
que geralmente é ruimvocê poderia tentar este, ele corrigiu o problema para mim, trabalhando com Yeoman 1.3.3 e Ubuntu 14.04 Grunt watch error - Waiting ... Fatal error: watch ENOSPC
fonte
Solução alternativa: verifique em seu relógio se há um argumento de arquivo vazio .
Aqui está um trecho do meu
gruntfile
No meu caso, eu poderia recriar o erro do pôster original sob demanda com o argumento vazio acima.
fonte
Eu estava recebendo um erro ao tentar instalar o Grunt. A execução do npm dedupe resolveu meu problema conforme respondido aqui: Erro do relógio Grunt - Esperando ... Erro fatal: assistir ENOSPC
fonte