| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/nami/node_modules/zombie/ |
Upload File : |
const assert = require('assert');
const del = require('del');
const eslint = require('gulp-eslint');
const exec = require('gulp-exec');
const File = require('fs');
const gulp = require('gulp');
const gutil = require('gulp-util');
const notify = require('gulp-notify');
const sourcemaps = require('gulp-sourcemaps');
const babel = require('gulp-babel');
// gulp -> gulp watch
gulp.task('default', ['watch']);
// gulp lint -> errors if code dirty
gulp.task('lint', function () {
return gulp.src([ 'js/**/*.js', 'test/*.js' ])
.pipe(eslint())
.pipe(eslint.formatEach())
.pipe(eslint.failOnError());
});
// gulp build -> compile coffee script
gulp.task('build', ['clean'], function() {
return gulp.src('src/**/*.js')
.pipe(sourcemaps.init())
.pipe(babel())
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('lib'))
.pipe(notify({
message: 'Zombie: built!',
onLast: true
}));
});
// gulp clean -> clean generated files
gulp.task('clean', function() {
return del('lib/**');
});
// gulp watch -> watch for changes and compile
gulp.task('watch', ['build'], function() {
return gulp.watch('src/*.js', ['clean', 'build']);
});
// gulp tag -> Tag this release
gulp.task('tag', ['changes'], function() {
const version = require('./package.json').version;
const tag = 'v' + version;
gutil.log('Tagging this release', tag);
return gulp.src('.changes')
.pipe( exec('git add package.json CHANGELOG.md') )
.pipe( exec('git commit --allow-empty -m "Version ' + version + '"') )
.pipe( exec('git tag ' + tag + ' --file .changes') )
.pipe( exec('git push origin ' + tag) )
.pipe( exec('git push origin master') );
});
// Generate a change log summary for this release
// git tag uses the generated .changes file
gulp.task('changes', function() {
const version = require('./package.json').version;
const changelog = File.readFileSync('CHANGELOG.md', 'utf-8');
const match = changelog.match(/^## Version (.*) .*\n([\S\s]+?)\n##/m);
assert(match, 'CHANGELOG.md missing entry: ## Version ' + version);
assert.equal(match[1], version, 'CHANGELOG.md missing entry for version ' + version);
const changes = match[2].trim();
assert(changes, 'CHANGELOG.md empty entry for version ' + version);
File.writeFileSync('.changes', changes);
});