咕unt不会少看

时间:2019-02-11 13:07:54

标签: gruntjs less

当我尝试在终端中运行grunt时遇到一些问题,我收到一条错误消息:

  

"task "default" not found. use --force to continue.

已经四处寻找帮助,但没有任何帮助,这里有人可以帮忙解决什么问题吗? gruntfile.js中的代码是这样的:

module.exports = function(grunt) {
    grunt.initConfig {{
        pkg: grunt.file.readJSON('package.json'),
        less: {
            dist: {
                files: {
                    'dist/css/style.css' : 'less/style.less'
                }
            }
        },
        watch: {
            css: {
                files: 'less/style.less',
                tasks: ['less']
            }
        },
    }};
    grunt.loadNpmTasks('grunt-contrib-less');
    grunt.loadNpmTasks('grunt-contrib-watch');
    grunt.registerTask('default',['watch']);
}

0 个答案:

没有答案