Giter Site home page Giter Site logo

gulp-qn-sync-mp's Introduction

gulp-qn-sync

gulp-qn-sync is a gulp plugin to upload the files which you have concat and minify ,to the Qiniu Cloud CDN in a synchronized manner and record the uploaded files.

Usage

npm install gulp-qn-sync --save-dev
var jeditor = require("gulp-json-editor");

content

以同步的方式上传文件到七牛云

基于node4.0 gulp4.0的环境下。

主要为了配合 gulp4.0的gulp.series方法

当前的上传任务不完成,则无法进行下一个任务。

demo gulpfile.js

    var qiniu = require('gulp-qn-sync')
    
    gulp.task('js', gulp.series(
    	/** 其他任务,如js,css打包预编译 */
    	// 	task_js,
    	//	task_css,
		uploadQiniu
	));
	/** function task_js(callback){...} */
	/** function task_css(callback){...} */
	 
    
    function uploadQiniu(callback){
    	gulp.src([ files /** filespath */])
			.pipe(qiniu({
				accessKey: ACCESSKEY,
				secretKey: SECRETKEY,
				bucket: BUCKET,
				private: false
			}, {
				dir: 'release/',
				versioning: true,
				recordInFile: './staticfiles.json'
			}))
    		.on('finish', callback);
    }

gulp-qn-sync-mp's People

Contributors

alexsunxl avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.