-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.coffee
149 lines (127 loc) · 3.56 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
###
Copyright (C) 2013 RoboIME
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
###
module.exports = (grunt) ->
# Project configuration.
grunt.initConfig
# Metadata.
pkg: grunt.file.readJSON("package.json")
clean: ["public"]
develop:
server:
file: "src/server.coffee"
cmd: "coffee"
tunneler:
file: "src/tunneler.coffee"
cmd: "coffee"
watch:
server:
files: ["src/**/*.coffee"]
tasks: ["develop:server"]
options:
nospawn: true
tunneler:
files: ["src/tunneler.coffee", "src/proto/**"]
task: ["develop:tunneler"]
appStyle:
files: ["app/**/*.styl"]
tasks: ["stylus"]
options:
livereload: true
appHtml:
files: ["app/**/*.jade"]
tasks: ["jade"]
options:
livereload: true
appScript:
#files: ["app/**/*.coffee"]
#tasks: ["browserify"]
files: ["public/*.js"]
options:
livereload: true
bower:
install:
options:
targetDir: "public/lib"
layout: (type) ->
type or "misc"
install: true
verbose: false
cleanTargetDir: true
cleanBowerDir: false
browserify:
client:
src: "app/client.coffee"
dest: "public/client.js"
logworker:
src: "app/logworker.coffee"
dest: "public/logworker.js"
options:
transform: [
"coffeeify"
#"brfs"
#"workerify"
]
watch: true
bundleOptions:
debug: true
browserifyOptions:
extensions: [".coffee"]
ignoreGlobals: true
copy:
app_src:
expand: true
src: "app/**/*.coffee"
dest: "public/"
src_protos:
expand: true
cwd: "src/protos/"
src: "*.proto"
dest: "public/protos/"
assets:
expand: true
cwd: "assets/"
src: "**/*"
dest: "public/"
jade:
app:
options:
pretty: true
data: ->
config: require("config")
files:
"public/index.html": "app/index.jade"
stylus:
compile:
options:
linenos: true
files:
"public/style.css": "app/style.styl"
"gh-pages":
options:
base: "public"
src: ["**"]
# These plugins provide necessary tasks.
grunt.loadNpmTasks "grunt-contrib-copy"
grunt.loadNpmTasks "grunt-contrib-clean"
grunt.loadNpmTasks "grunt-contrib-watch"
grunt.loadNpmTasks "grunt-develop"
grunt.loadNpmTasks "grunt-bower-task"
grunt.loadNpmTasks "grunt-browserify"
grunt.loadNpmTasks "grunt-contrib-jade"
grunt.loadNpmTasks "grunt-contrib-stylus"
grunt.loadNpmTasks "grunt-gh-pages"
# Default task is compiling
grunt.registerTask "app", ["browserify", "jade", "stylus", "copy"]
grunt.registerTask "default", ["bower", "app"]
grunt.registerTask "run", ["default", "develop:server", "watch"]
grunt.registerTask "tunneler", ["develop:tunneler", "watch:tunneler"]
grunt.registerTask "publish", ["default", "gh-pages"]