最简单的 push 文件到又拍云 grunt 插件
说明最简单的 push 文件到又拍云 grunt 插件
源自:https://github.com/gockxml/grunt-upyun/ (1 年未更新了)
如果没有用过 grunt 请看 http://gruntjs.com/ 安装npm install grunt-upyun-push --save-dev
在 Gruntfile.js 中加上
grunt.loadNpmTasks('grunt-upyun-push'); 配置 配置选项 options.files
Grunt 经典文件列表配置
Type: Array
Default value: []
请参考 Grunt building-the-files-object
options.files.destPush 到 cdn 的目标目录
Type: Array
Default value: []
以哪个目录为要 push 操作的根目录
Type: Array
Default value: []
请参考 Grunt configuring-tasks#files
options.files.filter请参考 Grunt custom-filter-function
配置 demo静态资源如下: /local/wait-to-push/dist/app.js /local/wait-to-push/dist/webapp.css
配置如:
grunt.initConfig({ upyun: { th_static: { files: [{ expand: true, dest :'/tests/build/static/dist/', cwd: './tests/local/wait-to-push/dist/', src: ['**/*.js', '**/*.css'], filter: 'isFile' }] }, images: { files: [{ expand: true, dest :'/tests/cdn/url/images/', cwd: './tests/local/wait-to-push/images/', src: ['**/*.png', '**/*.jpg', '**/*.gif'] }] } } })
Release History 2015-02-11 v0.1.1 补充 readme 2014-10-11 v0.1.0 Initial commitpush 结果如下: http://your-upyun-domain.com/build/static/dist/app.js http://your-upyun-domain.com/build/static/dist/webapp.css http://your-upyun-domain.com/cdn/url/images/1.jpg http://your-upyun-domain.com/cdn/url/images/2.png
版权声明:
1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。2、网站不提供资料下载,如需下载请到原作者页面进行下载。