gulp-qndnd
v1.0.0
Published
Qiniu DN gulp tasks (DELETE).
Downloads
2
Readme
gulp-qndnd
Qiniu DN gulp tasks ( include delete)
Install
npm install --save-dev gulp-react
Usage
var gulp = require('gulp');
var upload = require('gulp-qndn').upload;
var qnOptions = {
accessKey: 'your access key',
secretKey: 'your secret key',
bucket: 'your bucket name',
delete: true
domain: 'http://xxxx.xxx.xx.glb.clouddn.com'
};
gulp.task('default', function () {
return gulp.src('template.jsx')
.pipe(upload({qn: qnOptions}))
.pipe(gulp.dest('dist'));
});
API
.upload(options)
options.qn
object
Qinniu DN config, see qn docs.
options.prefix
string
file path prefix, default ''
.
options.flatten
bool
, flatten file path or not, default false
.