1

我正在使用 grunt-contrib-copy 并尝试将我的文件夹的内容复制src到我的dist文件夹中,同时排除一些目录。

src
├── bower_components
│   └── ...
├── components
│   ├── html5shiv.js
│   └── jquery.min.js
├── js
│   └── ...
├── scss
│   └── ...
└── index.html

我的繁重任务:

copy: {
  main: {
    expand: true,
    flatten: true,
    src: ['src/*', '!src/js', '!src/scss', '!src/bower_components'],
    dest: 'dist/',
  },
}

我要这个:

dist
├── components
│   ├── html5shiv.js
│   └── jquery.min.js
└── index.html

但我得到了这个:

dist
├── components
└── index.html

我究竟做错了什么?感谢您的关注。

4

0 回答 0