为了账号安全,请及时绑定邮箱和手机立即绑定

运行 grunt clean 报错 为什么呢,求各位大侠解惑,谢谢

  'use strict';
module.exports = function(grunt) {

  require('load-grunt-tasks')(grunt);
  require('time-grunt')(grunt);
  //配置项目路径
  var config = {
    app: 'app',
    dist: 'dist'
  }

  //任务配置
  grunt.initConfig({
    //引入config设置
    config:config,
    //配置copy命令
    copy:{
      dist_html:{
        //方法二:
        //**** files:[
        //   {
        //     src:'<%= config.app %>/index.html',
        //     dest:'<%= config.dist %>/index.html'
        //   },
        //   {
        //     src:'<%= config.app %>/js/index.js',
        //     dest:'<%= config.dist %>/js/index.js'
        //   }
        // ]********
        //方法三:键值对
        files:{
          '<%= config.dist %>/index.html':'<%= config.app %>/index.html',
          '<%= config.dist %>/js/index.js':'<%= config.app %>/js/index.js'
        }
        // src:'<%= config.app %>/index.html',
        // dest:'<%= config.dist %>/index.html'
      },
      //方法一 dist_js:{
      //   src:'<%= config.app %>/js/index.js',
      //   dest:'<%= config.dist %>/js/index.js'
      // }
    }

    //配置清除目录
    // clean:{
    //   dist:{
    //     src:['<%= config.dis %>/**/*']
    //   }
    // }
    clean: {
        build: {
          src: ['<%= config.dist %>/**/*'],
          filter:'isFile'
        }
    }
  });
};


正在回答

2 回答

你这个clean为什么放在copy里面。。

0 回复 有任何疑惑可以回复我~

http://img1.sycdn.imooc.com//57b2881e0001cb6414920677.jpg命令如图

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Grunt-beginner前端自动化工具
  • 参与学习       60389    人
  • 解答问题       408    个

通过配置Grunt自动化工具,提高您的工作效率,出乎您的想象

进入课程

运行 grunt clean 报错 为什么呢,求各位大侠解惑,谢谢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信