grunt:我在package.json中遇到了一些错误

时间:2015-09-26 18:08:22

标签: gruntjs

我有Task Run Explore,我在我的解决方案中安装了grunt。我在package.json中遇到一些错误,但我不明白,因为我曾经创建过npm init。

错误是:

序列不包含任何元素:

Failed to run "C:\_DEVELOP\C#\my_circle\my_circle\package.json"...
Sequence contains no elements
Failed to run "C:\_DEVELOP\C#\my_circle\my_circle\Gruntfile.js"...
cmd.exe /c grunt -b "C:\_DEVELOP\C#\my_circle\my_circle" --gruntfile "C:\_DEVELOP\C#\my_circle\my_circle\Gruntfile.js" --tasks "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\Microsoft\Web Tools\TaskRunnerExplorer\Scripts" vs-grunt-task-reader

Failed to run "C:\_DEVELOP\C#\my_circle\my_circle\package.json"...
Sequence contains no elements

当我在组合中更改为0时,请使用GruntFile.js。

在node_modules中的

我安装了grunt-cli, grunt-contrib-jshint, grunt-contrib-uglify, grunt-contrib-watch,它们位于项目级别内的node_modules内。

我的GruntFile.js是:

/// <binding Clean='uglify, watch' />
module.exports = function ( grunt )
{
    var bannerContent = '/*********************************************************\n' +
                        ' my_circle ' +
                        ' ==> Fecha subida:' +
                        ' <%= grunt.template.today("dd-mm-yyyy hh:MM") %>\n ' +
                        '*********************************************************/\n\n';

    //definir las tareas
    grunt.initConfig( {

        uglify: {
            options: {
                spawn: false,
                compress: false,
                mangle: false,
                beautify: true,
                banner: bannerContent
            },
            js: {
                src: ["Scripts/*.js"],
                dest: "Scripts/output.min.js"
            }
        }


    } );
    //para cargar los plugins 
    grunt.loadNpmTasks( 'grunt-contrib-uglify' );

    //registrar los plugins a las tareas por defecto. si ejecuto grunt ejecuta por orden los siguientes plugins.
    grunt.registerTask( 'default', ['uglify'] );
};

我的代码和package.json有什么问题?

1 个答案:

答案 0 :(得分:1)

根据Mads Kristensen的说法,这是一个错误: https://github.com/madskristensen/NpmTaskRunner/issues/12

  

我已经调查了这个问题,并且没有任何东西可以通过此扩展程序来修复它。问题在于Task Runner Explorer可扩展性代码,我在VS Web团队中打开了一个内部错误(176952)来修复它。关闭它。

我看到了相同的行为