Grunt task output with bus error: 10

I use the following JSHint Grunt task, which runs fine:

jshint: {
            options: {
                ignores: ['js/characters/**/*.js','js/libs/**/*.js','js/text.js','js/video.js'],
                predef: ['define', 'require'],
                reporter: require('jshint-stylish'),

                curly: true,
                eqnull: true,
                eqeqeq: true,
                undef: false,




            },
            all: ['js/**/*.js'],



        }

I am trying to configure it to work as part of a view task:

watch: {

            scripts: {
               files: ['<%= jshint.all %>'],
             ignores: ['js/characters/**/*.js','js/libs/**/*.js','js/text.js','js/video.js'],
               tasks: ['jshint']
           },
            css: {
                files: ['**/*.sass'],
                tasks: ['compass'],
                options: {
                    livereload: true,
                }
            }
        }

but every time I change the JS file, the clock comes out with Bus error: 10

+4
source share
1 answer

Updating to Node 0.10.22 fixed this problem.

+6
source

All Articles