-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
31 lines (29 loc) · 913 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
24
25
26
27
28
29
30
31
/**
* Created by marco.gobbi on 09/01/2015.
*/
var path = require('path');
module.exports = function (grunt) {
grunt.loadTasks('grunt-tasks/tasks');
require('load-grunt-config')(grunt, {
// path to task.js files, defaults to grunt dir
configPath: path.join(process.cwd(), 'grunt-tasks/config'),
//can post process config object before it gets passed to grunt
postProcess: function (config) {
config.pkg = grunt.file.readJSON('package.json');
config.banner = {
compact: '/*! <%= pkg.name %> <%= pkg.version %> (RoboJS Build) | <%= pkg.license %> */',
full: '/** RoboJS full build **/'
}
}
});
// Build
grunt.registerTask('build', [
'generateinit',
'requirejs',
'copy',
'clean:postbuild',
'stripdefine',
//'docker:app',
'uglify'
]);
};