forked from jaredwilli/MacGyver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.coffee
66 lines (59 loc) · 1.4 KB
/
Gruntfile.coffee
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
module.exports = (grunt) ->
require('matchdep').filterDev('grunt-*').forEach grunt.loadNpmTasks
grunt.initConfig
pkg: grunt.file.readJSON "package.json"
jqueryUI: grunt.file.readJSON "vendor/bower/jquery.ui/package.json"
buildConf: grunt.file.readJSON "build.json"
grunt.loadTasks "misc/grunt"
grunt.registerTask "prepare", "Prepare for deploying", ["bump", "changelog"]
grunt.registerTask "concatDeploy", [
"concat:jqueryui"
"concat:appJs"
"concat:deployAppJs"
"concat:modulesJs"
"concat:css"
]
grunt.registerTask "deploy", "Build and copy to lib/", [
"coffee"
"stylus"
"jade"
"concatDeploy"
"clean"
"replace:src"
"chalkboard"
"marked"
"replace:docs"
"replace:version"
"karma:build"
"update:component"
"copy:images"
"copy:public"
"uglify:dist"
"tag"
]
grunt.registerTask "compile", "Compile files", [
"coffee"
"stylus"
"jade"
"concat:jqueryui"
"concat:appJs"
"concat:css"
"clean"
"chalkboard"
"marked"
"replace:docs"
]
grunt.registerTask "deploy-bower", "Updated all bower repositories", [
"copy:bower"
"uglify:bower"
"stylus:compile"
"concat:moduleCss"
"clean"
"updatebuild"
]
grunt.registerTask "dev", "Watch src and run test server", [
"compile"
"karma:unit"
"server"
"watch"
]