-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
59 lines (56 loc) · 1.53 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
module.exports = function (grunt) {
require('jit-grunt')(grunt);
grunt.initConfig({
shell: {
ender: {
command: 'ender build [email protected] bean [email protected] [email protected] ender-mink --output ender --sandbox ender-core && ender refresh'
}
},
requirejs: {
compile: {
options: {
baseUrl: ".",
name: "dist/modal/modal.js", // assumes a production build using almond
out: "all/mink-all.js",
preserveLicenseComments: false,
generateSourceMaps: true,
optimize: "uglify2"
}
}
},
concat: {
css: {
src: ['dist/**/*.css'],
dest: 'all/mink.css',
},
},
bump: {
options: {
files: ['package.json', '*/package.json', '*/*/package.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release %VERSION%',
commitFiles: ['package.json', 'base/package.json', 'ender/package.json', 'dist/modal/package.json'],
createTag: true,
tagName: '%VERSION%',
tagMessage: 'Version %VERSION%',
push: false,
pushTo: 'origin',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe'
}
},
docco: {
debug: {
src: [
'base/**/*.js',
'spec/assets/*.js'
],
options: {
css: 'spec/assets/docco.css',
output: 'spec/docs/'
}
}
}
});
grunt.registerTask('default', ['shell', 'concat:css']);
};