mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
var gulp = require('gulp'),
|
|
jshint = require('gulp-jshint'),
|
|
recess = require('gulp-recess'),
|
|
mocha = require('gulp-mocha'),
|
|
|
|
cloudfunc = require('./test/lib/cloudfunc.js'),
|
|
Util = require('./lib/util'),
|
|
fs = require('fs'),
|
|
exec = require('child_process').exec,
|
|
Info = require('./package'),
|
|
|
|
LIB = './lib/',
|
|
LIB_CLIENT = LIB + 'client/',
|
|
LIB_SERVER = LIB + 'server/',
|
|
Src = [
|
|
'./*.js',
|
|
'test/**/*.js',
|
|
LIB + '*.js',
|
|
LIB_CLIENT + '/*.js',
|
|
LIB_CLIENT + 'storage/*.js',
|
|
LIB_SERVER + '/**/*.js',
|
|
'!' + LIB + 'diff/diff-match-patch.js',
|
|
'!' + LIB + 'promise.js',
|
|
'!' + LIB_CLIENT + 'jquery.js'
|
|
];
|
|
|
|
gulp.task('jshint', function() {
|
|
gulp.src(Src)
|
|
.pipe(jshint())
|
|
.pipe(jshint.reporter())
|
|
.on('error', onError);
|
|
});
|
|
|
|
|
|
gulp.task('css', function () {
|
|
gulp.src('css/*.css')
|
|
.pipe(recess())
|
|
.on('error', onError);
|
|
});
|
|
|
|
gulp.task('test', function() {
|
|
cloudfunc.check();
|
|
|
|
gulp.src('test/lib/util.js')
|
|
.pipe(mocha({reporter: 'min'}))
|
|
.on('error', onError);
|
|
});
|
|
|
|
gulp.task('changelog', function() {
|
|
var version = 'v' + Info.version,
|
|
name = 'ChangeLog';
|
|
|
|
Util.exec.parallel([
|
|
Util.exec.with(exec, 'shell/log.sh ' + version),
|
|
Util.exec.with(fs.readFile, name, 'utf8'),
|
|
], function(error, execParams, fileData) {
|
|
var DATA = 0,
|
|
STD_ERR = 1,
|
|
execData = execParams[DATA],
|
|
date = Util.getShortDate(),
|
|
head = date + ', ' + version + '?\n\n',
|
|
data = head + execData + fileData;
|
|
|
|
error = error || execParams[STD_ERR];
|
|
|
|
if (error)
|
|
console.log(error);
|
|
else
|
|
fs.writeFile(name, data, function(error) {
|
|
var msg = 'changelog: done';
|
|
|
|
console.log(error || msg);
|
|
});
|
|
});
|
|
});
|
|
|
|
gulp.task('default', ['jshint', 'css', 'test']);
|
|
|
|
function onError(params) {
|
|
console.log(params.message);
|
|
}
|
|
|
|
})();
|