-
Notifications
You must be signed in to change notification settings - Fork 46
/
Gruntfile.js
54 lines (51 loc) · 1.26 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
coffee: {
compile: {
files: {
"spec/build/specs.js": ["spec/*.coffee"],
"dist/ng-onboarding.js": ["src/*.coffee"]
}
}
},
uglify: {
my_target: {
files: {
"dist/ng-onboarding.min.js": "dist/ng-onboarding.js"
}
}
},
less: {
compile: {
files: {
"dist/ng-onboarding.css": ["src/ng-onboarding.less"]
}
}
},
watch: {
scripts: {
files: ['**/*.coffee', '**/*.less'],
tasks: ['coffee', 'uglify', 'less'],
options: {
debounceDelay: 250,
},
}
},
zip: {
'package': {
cwd: 'dist/',
src: ['dist/*.js', 'dist/*.css'],
dest: 'dist/ng-onboarding.zip'
}
}
});
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-zip');
grunt.registerTask('default', ['coffee', 'uglify', 'less', 'watch']);
grunt.registerTask('package', ['coffee', 'uglify', 'less', 'zip']);
};