-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
134 lines (118 loc) · 2.74 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
'use strict';
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
var pkg = require('./bower.json');
// Configurable paths for the application
var appConfig = {
app: pkg.appPath || 'src',
dist: 'dist'
};
// Define the configuration for all the tasks
grunt.initConfig({
// Project settings
resourceX: appConfig,
// Watches files for changes and runs tasks based on the changed files
watch: {
js: {
files: ['<%= resourceX.app %>/**/*.js'],
tasks: ['newer:jshint:all']
},
gruntfile: {
files: ['Gruntfile.js']
}
},
bump: {
options: {
files: ['package.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json'],
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: true,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d',
globalReplace: false,
prereleaseName: false,
regExp: false
}
},
// Make sure code styles are up to par and there are no obvious mistakes
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
all: {
src: [
'Gruntfile.js',
'<%= resourceX.app %>/components/**/*.js'
]
},
test: {
options: {
jshintrc: 'test/.jshintrc'
},
src: ['test/spec/{,*/}*.js']
}
},
uglify: {
my_target: {
options: {
sourceMap: true,
sourceMapName: 'dist/angular-resource-x.map'
},
files: {
'dist/resource_.min.js': ['src/angular-resource-x.js']
}
}
},
// Empties folders to start fresh
clean: {
dist: {
files: [{
dot: true,
src: [
'.tmp',
'<%= resourceX.dist %>/{,*/}*',
'!<%= resourceX.dist %>/.git{,*/}*'
]
}]
},
server: '.tmp'
},
ngAnnotate: {
dist: {
files: [{
expand: true,
cwd: 'dist/',
src: 'resource_.js',
dest: 'dist/angular-resource-x.js'
}]
}
},
// Test settings
karma: {
unit: {
configFile: 'tests/configs/karma.conf.js',
singleRun: true
}
}
});
grunt.registerTask('test', [
'karma'
]);
grunt.registerTask('build', [
'ngAnnotate',
'uglify'
]);
grunt.registerTask('default', [
'build',
'test'
]);
};