A bot used for https://code-your-snake.codingmaster398.repl.co/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.5 KiB
103 lines
3.5 KiB
2 years ago
|
var gulp = require('gulp'),
|
||
|
uglify = require('gulp-uglify'),
|
||
|
rename = require('gulp-rename'),
|
||
|
browserify = require('gulp-browserify'),
|
||
|
concat = require('gulp-concat'),
|
||
|
mocha = require('gulp-mocha'),
|
||
|
shell = require('shelljs'),
|
||
|
del = require('del'),
|
||
|
jshint = require('gulp-jshint'),
|
||
|
stylish = require('jshint-stylish'),
|
||
|
semver = require('semver'),
|
||
|
jsonfile = require('jsonfile'),
|
||
|
inquirer = require("inquirer"),
|
||
|
fs = require('fs');
|
||
|
|
||
|
gulp.task('clean', function(cb) {
|
||
|
del('lib/**/*.*', cb);
|
||
|
});
|
||
|
|
||
|
gulp.task('browserify', ['clean'], function(cb) {
|
||
|
return gulp.src('./src/PathFinding.js')
|
||
|
.pipe(browserify({ standalone: 'PF' }))
|
||
|
.pipe(rename('pathfinding-browserified.js'))
|
||
|
.pipe(gulp.dest('./lib/'), cb);
|
||
|
});
|
||
|
|
||
|
gulp.task('uglify', ['browserify'], function(cb) {
|
||
|
return gulp.src('./lib/pathfinding-browserified.js')
|
||
|
.pipe(uglify())
|
||
|
.pipe(rename('pathfinding-browser.min.js'))
|
||
|
.pipe(gulp.dest('./lib/'), cb);
|
||
|
});
|
||
|
|
||
|
gulp.task('scripts', ['clean', 'browserify', 'uglify'], function(cb) {
|
||
|
return gulp.src(['./src/banner', './lib/pathfinding-browserified.js'])
|
||
|
.pipe(concat('pathfinding-browser.js'))
|
||
|
.pipe(gulp.dest('./lib/'), cb);
|
||
|
});
|
||
|
|
||
|
gulp.task('compile', ['scripts'], function() {
|
||
|
del('./lib/pathfinding-browserified.js');
|
||
|
});
|
||
|
|
||
|
gulp.task('test', function () {
|
||
|
return gulp.src('./test/**/*.js', {read: false})
|
||
|
.pipe(mocha({reporter: 'spec', bail: true, globals: { should: require('should') }}));
|
||
|
});
|
||
|
|
||
|
gulp.task('bench', function() {
|
||
|
shell.exec('node benchmark/benchmark.js');
|
||
|
});
|
||
|
|
||
|
gulp.task('lint', function() {
|
||
|
return gulp.src('./src/**/*.js')
|
||
|
.pipe(jshint())
|
||
|
.pipe(jshint.reporter(stylish))
|
||
|
.pipe(jshint.reporter('fail'));
|
||
|
});
|
||
|
|
||
|
gulp.task('release', ['compile'], function(cb) {
|
||
|
inquirer.prompt({
|
||
|
type: 'list',
|
||
|
name: 'bumpType',
|
||
|
message: 'Which version do you want to bump?',
|
||
|
choices: ['patch', 'minor', 'major'],
|
||
|
//default is patch
|
||
|
default: 0
|
||
|
}, function (result) {
|
||
|
var f = jsonfile.readFileSync('./package.json');
|
||
|
f.version = semver.inc(f.version, result.bumpType);
|
||
|
jsonfile.writeFileSync('./package.json', f);
|
||
|
|
||
|
shell.exec('git add .');
|
||
|
shell.exec('git commit -m "Bumping version to ' + f.version + '"');
|
||
|
shell.exec('git push origin master');
|
||
|
shell.exec('git tag -a ' + f.version + ' -m "Creating tag for version ' + f.version + '"');
|
||
|
shell.exec('git push origin ' + f.version);
|
||
|
shell.exec('npm publish');
|
||
|
|
||
|
shell.exec('git clone https://github.com/imor/pathfinding-bower.git release');
|
||
|
process.chdir('release');
|
||
|
fs.writeFileSync('pathfinding-browser.js', fs.readFileSync('../lib/pathfinding-browser.js'));
|
||
|
fs.writeFileSync('pathfinding-browser.min.js', fs.readFileSync('../lib/pathfinding-browser.min.js'));
|
||
|
|
||
|
f = jsonfile.readFileSync('bower.json');
|
||
|
f.version = semver.inc(f.version, result.bumpType);
|
||
|
jsonfile.writeFileSync('bower.json', f);
|
||
|
|
||
|
shell.exec('git add .');
|
||
|
shell.exec('git commit -m "Bumping version to ' + f.version + '"');
|
||
|
shell.exec('git push origin master');
|
||
|
shell.exec('git tag -a ' + f.version + ' -m "Creating tag for version ' + f.version + '"');
|
||
|
shell.exec('git push origin ' + f.version);
|
||
|
|
||
|
process.chdir('../');
|
||
|
del('release');
|
||
|
del('lib/**/*.*', cb);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
gulp.task('default', ['lint', 'test', 'compile'], function() {
|
||
|
});
|