048f2ce7d2
The main reason is that neo-async takes a lot less space due to the missing lodash-dependency. The other is speed. closes #1431
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
var async = require('neo-async'),
|
|
git = require('./util/git'),
|
|
semver = require('semver');
|
|
|
|
module.exports = function(grunt) {
|
|
grunt.registerTask('version', 'Updates the current release version', function() {
|
|
var done = this.async(),
|
|
pkg = grunt.config('pkg'),
|
|
version = grunt.option('ver');
|
|
|
|
if (!semver.valid(version)) {
|
|
throw new Error('Must provide a version number (Ex: --ver=1.0.0):\n\t' + version + '\n\n');
|
|
}
|
|
|
|
pkg.version = version;
|
|
grunt.config('pkg', pkg);
|
|
|
|
grunt.log.writeln('Updating to version ' + version);
|
|
|
|
async.each([
|
|
['lib/handlebars/base.js', (/const VERSION = ['"](.*)['"];/), 'const VERSION = \'' + version + '\';'],
|
|
['components/bower.json', (/"version":.*/), '"version": "' + version + '",'],
|
|
['components/package.json', /"version":.*/, '"version": "' + version + '",'],
|
|
['components/handlebars.js.nuspec', (/<version>.*<\/version>/), '<version>' + version + '</version>']
|
|
],
|
|
function(args, callback) {
|
|
replace.apply(undefined, args);
|
|
grunt.log.writeln(' - ' + args[0]);
|
|
git.add(args[0], callback);
|
|
},
|
|
function() {
|
|
grunt.task.run(['default']);
|
|
done();
|
|
});
|
|
});
|
|
|
|
function replace(path, regex, value) {
|
|
var content = grunt.file.read(path);
|
|
content = content.replace(regex, value);
|
|
grunt.file.write(path, content);
|
|
}
|
|
};
|