问答详情
源自:5-3 初识Grunt Files处理方式

Warning: Task "copy" not found. Use --force to continue

如题:

'use strict';

module.export = function(grunt){

    require('load-grunt-tasks')(grunt);


    require('time-grunt')(grunt);


    var config = {

        app:'app',

        dist:'dist'

    }

    grunt.initConfig({

        config:config,

        copy:{

            dist_html:{

                files:{

                    '<%= config.dist %>/index.html':'<%= config.app %>/index.html',

                    '<%= config.dist %>/js/index.js':['<%= config.app %>/js/index.js']

                }

            }

        },

        clean:{

            dist:{

                src:['<%= config.dist %>/index.html','<%= config.dist %>/js/index.js']

            }

        }

    })

}


"devDependencies": {

    "grunt": "^1.0.1",

    "grunt-contrib-clean": "^1.1.0",

    "grunt-contrib-copy": "^1.0.0",

    "load-grunt-tasks": "^3.5.2",

    "time-grunt": "^1.4.0"

  }

提问者:weberrookie 2017-05-11 10:53

个回答

  • 慕粉0300152458
    2017-05-14 22:29:50

    应该是module.exports=function(grunt){..},你没有加s