aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/tasks/bump_version.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-11-18 23:56:25 +0100
committerMario Vavti <mario@mariovavti.com>2015-11-18 23:56:25 +0100
commitb23284cba28335f61595f2264685b1bbafc19183 (patch)
tree696cbfc2b5a609c636e0d1d7a3a2f9ad7a302266 /library/moment/tasks/bump_version.js
parent0c163c4d038a4c26335af1bde366d8ef9e53c464 (diff)
downloadvolse-hubzilla-b23284cba28335f61595f2264685b1bbafc19183.tar.gz
volse-hubzilla-b23284cba28335f61595f2264685b1bbafc19183.tar.bz2
volse-hubzilla-b23284cba28335f61595f2264685b1bbafc19183.zip
move moment.min.js and remove unneeded files
Diffstat (limited to 'library/moment/tasks/bump_version.js')
-rw-r--r--library/moment/tasks/bump_version.js65
1 files changed, 0 insertions, 65 deletions
diff --git a/library/moment/tasks/bump_version.js b/library/moment/tasks/bump_version.js
deleted file mode 100644
index f3dea3106..000000000
--- a/library/moment/tasks/bump_version.js
+++ /dev/null
@@ -1,65 +0,0 @@
-module.exports = function (grunt) {
- grunt.registerTask('bump_version', function (version) {
- if (!version || version.split('.').length !== 3) {
- grunt.fail.fatal('malformed version. Use\n\n grunt bump_version:1.2.3');
- }
-
- grunt.config('string-replace.moment-js', {
- files: {'src/moment.js': 'src/moment.js'},
- options: {
- replacements: [
- {
- pattern: /\/\/! version : .*/,
- replacement: '//! version : ' + version
- }, {
- pattern: /moment\.version = '.*'/,
- replacement: "moment.version = '" + version + "'"
- }
- ]
- }
- });
-
- grunt.config('string-replace.package-json', {
- files: {'package.json': 'package.json'},
- options: {
- replacements: [
- {
- pattern: /"version": .*/,
- replacement: '"version": "' + version + '",'
- }
- ]
- }
- });
-
- grunt.config('string-replace.component-json', {
- files: {'component.json': 'component.json'},
- options: {
- replacements: [
- {
- pattern: /"version": .*/,
- replacement: '"version": "' + version + '",'
- }
- ]
- }
- });
-
- grunt.config('string-replace.moment-js-nuspec', {
- files: {'Moment.js.nuspec': 'Moment.js.nuspec'},
- options: {
- replacements: [
- {
- pattern: /<version>.*<\/version>/,
- replacement: '<version>' + version + '</version>'
- }
- ]
- }
- });
-
- grunt.task.run([
- 'string-replace:moment-js',
- 'string-replace:package-json',
- 'string-replace:component-json',
- 'string-replace:moment-js-nuspec'
- ]);
- });
-};