forked from tower-archive/tower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrunt.coffee
231 lines (202 loc) · 5.76 KB
/
grunt.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# https://github.com/cowboy/grunt/blob/master/docs/task_init.md
# https://github.com/kmiyashiro/grunt-mocha
# https://github.com/shama/grunt-hub/blob/master/tasks/watch.js
module.exports = (grunt) ->
require('./packages/tower-tasks/tasks')(grunt)
try
require('./wiki/grunt')(grunt)
hasWiki = true
catch error
hasWiki = false
require('./coffee-inheritance')
require('./index.js') # require towerRoot/index.js
_ = Tower._
file = grunt.file
_path = require('path')
githubDownloadStore = null
# CoffeeScript files
coffeeSrcPaths = _.select file.expand([
'packages/**/*.coffee'
]), (i) ->
!i.match('templates')
jsSrcPaths = _.select file.expand([
'packages/**/*.js'
]), (i) ->
!i.match('templates')
clientTestPaths = file.expand([
'test/cases/*/shared/**/*.coffee'
'test/cases/*/client/**/*.coffee'
])
clientTestDestinationPath = 'test/example/public/javascripts'
clientTestMap = {}
testCasesPath = _path.relative(process.cwd(), 'test/cases')
clientTestPaths.forEach (path) ->
key = path.replace(testCasesPath, '').split(_path.sep)[1]
array = clientTestMap[key] ||= []
array.push(path)
towerFiles = ['lib/tower/client.js']
config =
pkg: '<json:package.json>'
meta:
banner: """
/*!
* Tower.js v<%= pkg.version %>
* <%= pkg.homepage %>
*
* Copyright <%= grunt.template.today('yyyy') %>, Lance Pollard
* <%= _.pluck(pkg.licenses, 'type').join(', ') %> License.
* http://towerjs.org/license
*
* Date: <%= grunt.template.today('isoDate') %>
*/
"""
concat:
tower:
src: ['<banner>', towerFiles]
dest: 'dist/tower.js'
core:
src: ['<banner>', towerFiles]
dest: 'dist/tower.core.js'
# If you only want the model on the client
model:
src: ['<banner>', towerFiles]
dest: 'dist/tower.model.js'
# If you want the controller/route functionality as well
controller:
src: ['<banner>', towerFiles]
dest: 'dist/tower.controller.js'
min:
dist:
src: ['dist/tower.js']
dest: 'dist/tower.min.js'
coffee:
all:
src: coffeeSrcPaths
dest: 'lib'
strip: 'packages/'
options:
bare: true
tests:
src: clientTestPaths
dest: clientTestDestinationPath
options:
bare: false
copy:
packageJSON:
src: ['packages/**/package.json', 'packages/tower-generator/server/generators/**/templates/**/*']
strip: 'packages/'
dest: 'lib'
clientForTests:
src: ['dist/tower.js']
strip: 'dist/'
dest: _path.join('test/example', 'vendor/javascripts')
js:
src: jsSrcPaths
strip: 'packages/'
dest: 'lib'
watch:
packageJSON:
files: ['packages/**/package.json', 'packages/tower-generator/server/generators/**/templates/**/*']
tasks: ['copy:packageJSON']
#mainPackageJSON:
# files: ['package.json']
# tasks: ['injectTestDependencies:packageJSON']
build:
client: {}
uploadToGithub:
tower: {}
dependencies:
client: {}
bundleDependencies:
client: {}
bundleTests:
client: {}
injectTestDependencies:
packageJSON:
src: ['package.json']
#jshint:
# options:
# curly: true
# eqeqeq: true
# immed: true
# latedef: true
# newcap: true
# noarg: true
# sub: true
# undef: true
# eqnull: true
# browser: true
coffeeSrcPaths.forEach (name) ->
config.coffee[name] =
src: name
dest: 'lib'
strip: 'packages/'
options:
bare: true
config.watch[name] =
files: [name]
tasks: ["coffee:#{name}"]
jsSrcPaths.forEach (name) ->
config.copy[name] =
src: name
dest: 'lib'
strip: 'packages/'
config.watch[name] =
files: [name]
tasks: ["copy:#{name}"]
# clientTestPaths.forEach (name) ->
concatTestsCommand = []
for key, value of clientTestMap
dest = _path.join(clientTestDestinationPath, 'test/cases', key + 'Test.js')
concatTestCommand = "concat:#{key}Tests"
concatTestsCommand.push(concatTestCommand)
for name in value
config.coffee[name] =
src: name
dest: clientTestDestinationPath
options:
bare: false
config.watch[name] =
files: [name]
tasks: ["coffee:#{name}"]#, concatTestCommand]
src = _.map value, (i) ->
_path.join(clientTestDestinationPath, i).replace(/\.coffee$/, '.js')
config.concat["#{key}Tests"] =
src: src
dest: dest
# @todo need to copy file to test/x when it changes
#for name in src
# config.concat[name]
if hasWiki
config.wiki =
toc: true
config.watch['wiki:toc'] =
files: ['wiki/_sidebar.md']
tasks: ['wiki:toc']
wikiFiles = file.expand([
'wiki/en/**/*.md'
])
config.wikiLinks =
all:
src: wikiFiles
#wikiFiles.forEach (wikiFile) ->
# slug = _.parameterize(wikiFile)
#
# #config.watch[slug] =
# # files: [wikiFile]
# # tasks: ["wikiLinks:#{slug}"]
# config.wikiLinks[slug] =
# src: wikiFile
# dest: wikiFile
#
# config
grunt.initConfig(config)
#grunt.loadNpmTasks 'grunt-coffee'
grunt.registerTask 'concat:tests', concatTestsCommand.join(' ')
grunt.registerTask 'default', 'coffee:all copy:js copy:packageJSON build:client copy:clientForTests coffee:tests'
grunt.registerTask 'start', 'default watch'
grunt.registerTask 'dist', 'build uploadToGithub'
grunt.registerTask ''
grunt.registerTask 'uploadToGithub', ->
taskComplete = @async()
grunt.helper 'uploadToGitHub', 'dist/tower.js', "tower-#{grunt.config('pkg.version')}.js", taskComplete