forked from handsontable/ngHandsontable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
68 lines (61 loc) · 1.72 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* This file is used to build ngHandsontable from `src/*`
*
* Installation:
* 1. Install Grunt CLI (`npm install -g grunt-cli`)
* 1. Install Grunt 0.4.0 and other dependencies (`npm install`)
*
* Build:
* Execute `grunt` from root directory of this directory (where Gruntfile.js is)
* To execute automatically after each change, execute `grunt --force default watch`
*
* Result:
* building ngHandsontable will create files:
* - dist/ngHandsontable.js
* - dist/ngHandsontable.min.js
*
* See http://gruntjs.com/getting-started for more information about Grunt
*/
module.exports = function (grunt) {
var myBanner = '/**\n' +
' * <%= pkg.name %> <%= pkg.version %>\n' +
' * \n' +
' * Copyright 2012-2014 Marcin Warpechowski\n' +
' * Licensed under the MIT license.\n' +
' * https://github.com/handsontable/ngHandsontable\n' +
' * Date: <%= (new Date()).toString() %>\n' +
'*/\n\n';
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
banner: myBanner
},
new: {
src: [
'src/ie-shim.js',
'src/ngHandsontable.js',
'src/services/*.js',
'src/directives/*.js'
],
dest: 'dist/ngHandsontable.js'
}
},
uglify: {
options: {
banner: myBanner
},
"dist/ngHandsontable.min.js": ["dist/ngHandsontable.js"]
},
watch: {
files: ['src/**/*', 'bower_components/**/*'],
tasks: ['concat', 'uglify']
}
});
// Default task.
// grunt.registerTask('default', ['concat', 'uglify', 'cssmin']);
grunt.registerTask('default', ['concat', 'uglify']);
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
};