-
Notifications
You must be signed in to change notification settings - Fork 0
/
GruntFile.js
executable file
·23 lines (17 loc) · 980 Bytes
/
GruntFile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module.exports = function(grunt) {
var gtx = require('gruntfile-gtx').wrap(grunt);
gtx.loadAuto();
var gruntConfig = require('./grunt');
gruntConfig.package = require('./package.json');
gtx.config(gruntConfig);
// We need our bower components in order to develop
gtx.alias('build:webapp', ['recess:less', 'clean:webapp', 'copy:libs', /*'copy:webapp'*/, /*'recess:webapp'*/, /*'concat:webapp'*/, /*'uglify:webapp'*/]);
gtx.alias('build:html', ['clean:html', 'copy:html', 'recess:html', 'swig:html', 'concat:html', 'uglify:html']);
gtx.alias('build:landing', ['copy:landing', 'swig:landing']);
gtx.alias('release', ['bower-install-simple', 'bump-commit']);
gtx.alias('release-patch', ['bump-only:patch', 'release']);
gtx.alias('release-minor', ['bump-only:minor', 'release']);
gtx.alias('release-major', ['bump-only:major', 'release']);
gtx.alias('prerelease', ['bump-only:prerelease', 'release']);
gtx.finalise();
}