-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgruntfile.js
39 lines (35 loc) · 1.1 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
/// <vs AfterBuild='default' />
module.exports = function (grunt) {
'use strict';
// Project configuration
grunt.initConfig({
// Metadata
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
banner: '// <%= pkg.url %>\n// Version: <%= pkg.version %>\n// Released: <%= grunt.template.today("yyyy-mm-dd") %> \n'
},
app: {
src: [
'tree-view-service.js',
'tree-view-directive.js',
],
dest: 'dist/tree-view.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
app: {
src: 'dist/tree-view.js',
dest: 'dist/tree-view.min.js'
}
}
});
// These plugins provide necessary tasks
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
// Default task
grunt.registerTask('default', ['concat', 'uglify']);
};