grunt配置-copy任务
程序员文章站
2024-01-22 13:04:40
...
copy任务配置项使用示例:
flatten:设置(true、false)用来指定是否保持文件目录结构
那么配置为如下任务
执行 grunt copy:dev就将app目录下所有的html文件都复制到app/test123目录下
https://github.com/gruntjs/grunt-contrib-copy
http://blog.sina.com.cn/s/blog_79c02b6b0102v03e.html
copy: { main: { files: [ // includes files within path {expand: true, src: ['path/*'], dest: 'dest/', filter: 'isFile'}, // includes files within path and its sub-directories {expand: true, src: ['path/**'], dest: 'dest/'}, // makes all src relative to cwd {expand: true, cwd: 'path/', src: ['**'], dest: 'dest/'}, // flattens results to a single level {expand: true, flatten: true, src: ['path/**'], dest: 'dest/', filter: 'isFile'}, ], }, },
flatten:设置(true、false)用来指定是否保持文件目录结构
那么配置为如下任务
copy: { dev : { files : [{ expand : true, cwd : 'app',//根目录 dest : 'test123', src : '*.html'//基于cwd的子目录 }] } }
执行 grunt copy:dev就将app目录下所有的html文件都复制到app/test123目录下
https://github.com/gruntjs/grunt-contrib-copy
http://blog.sina.com.cn/s/blog_79c02b6b0102v03e.html
上一篇: 百度图片版权保护“图腾”正式上线了
下一篇: ubuntu关机重启命令
推荐阅读
-
grunt配置-copy任务
-
grunt配置-open任务
-
Docker 容器里配置计划任务 crontab(DaoCloud + Docker + Laravel5)
-
spring基于注解的方式配置定时任务
-
springboot项目scheduled定时任务#配置文件取值#jar包动态修改
-
javascript - 关于grunt插件browserify配置问题,求助
-
crontab定时任务配置记录,crontab任务_PHP教程
-
Linux crontab定时任务配置方法(详解)
-
nginx安装及依赖关系的配置记录 dpkg 依赖关系 oracle任务依赖关系 uml依赖关系的实
-
spring-boot通过@Scheduled配置定时任务及定时任务@Scheduled注解的方法