forked from excaliburjs/Excalibur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GruntFile.js
243 lines (213 loc) · 6.83 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
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
232
233
234
235
236
237
238
239
240
241
242
243
/*********************************
/* Excalibur.js Grunt Build File
/*********************************/
var path = require('path');
/*global module:false*/
module.exports = function (grunt) {
//
// Project configuration
//
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
version: process.env.APPVEYOR_BUILD_VERSION || '<%= pkg.version %>',
tscCmd: path.join('node_modules', '.bin', 'tsc'),
//
// Configure jasmine-node to run Jasmine specs
//
jasmine_node: {
options: {
specNameMatcher: "Spec", // load only specs containing specNameMatcher
specFolders: ["./src/spec"],
forceExit: true,
showColors: true,
junitreport: {
report: false,
savePath: "./dist/reports/jasmine/",
useDotNotation: true,
consolidate: true
}
},
src: ["**/*.js"]
},
//
// Concatenate build files
// Add banner to files
//
concat: {
main: {
src: ['dist/<%= pkg.name %>-<%= version %>.js', 'src/engine/Exports.js'],
dest: 'dist/<%= pkg.name %>-<%= version %>.js'
},
minified: {
src: ['dist/<%= pkg.name %>-<%= version %>.min.js', 'src/engine/Exports.js'],
dest: 'dist/<%= pkg.name %>-<%= version %>.min.js'
},
options: {
separator: '\n;\n',
banner: '/*! <%= pkg.title || pkg.name %> - v<%= version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> Excalibur.js <<%= pkg.author %>>;' +
' Licensed <%= pkg.license %>*/\n'
}
},
//
// Minify files
//
minified: {
files: {
src: 'dist/<%= pkg.name %>-<%= version %>.js',
dest: 'dist/<%= pkg.name %>-<%= version %>'
},
options: {
sourcemap: false,
allinone: true,
dest_filename: '.min.js'
}
},
//
// Watch files
//
watch: {
scripts: {
files: ['src/engine/*.ts', 'src/engine/*/*.ts', 'src/spec/*.ts'],
tasks: ['tslint:src', 'shell:specs', 'jasmine_node'],
options: {
interrupt: true
}
}
},
//
// Shell Commands
//
shell: {
//
// Execute TypeScript compiler against Excalibur core
//
tsc: {
command: '<%= tscCmd %> --sourcemap --declaration "./src/engine/Engine.ts" --out "./dist/<%= pkg.name %>-<%= version %>.js"',
options: {
stdout: true,
failOnError: true
}
},
//
// Package up Nuget (Windows only)
//
nuget: {
command: 'src\\tools\\nuget pack Excalibur.nuspec -version <%= version %> -OutputDirectory ./dist',
options: {
stdout: true
}
},
//
// TypeScript Compile Jasmine specs
//
specs: {
command: function () {
var files = grunt.file.expand("./src/spec/*.ts");
return '<%= tscCmd %> ' + files.join(' ') + ' --out ./src/spec/TestsSpec.js'
},
options: {
stdout: true,
failOnError: true
}
},
//
// TypeScript Compile sample game
//
sample: {
command: '<%= tscCmd %> ./sandbox/web/src/game.ts',
options: {
stdout: true,
failOnError: true
}
},
//
// Compile visual tests
//
visual: {
command: function() {
var files = grunt.file.expand("./sandbox/web/tests/*/*.ts");
return '<%= tscCmd %> ' + files.join(' ');
},
options: {
stdout: true,
failOnError: true
}
}
},
//
// Copy Files for sample game
//
copy: {
main: {
files: [
{src: './dist/<%= pkg.name %>-<%= version %>.js', dest: './dist/<%= pkg.name %>.js'},
{src: './dist/<%= pkg.name %>-<%= version %>.js', dest: './sandbox/web/<%= pkg.name %>.js'},
{src: './dist/<%= pkg.name %>-<%= version %>.min.js', dest: './dist/<%= pkg.name %>.min.js'},
{src: './dist/<%= pkg.name %>-<%= version %>.d.ts', dest: './dist/<%= pkg.name %>.d.ts'}
]
}
},
//
// TS Lint configuration
//
tslint: {
options: {
formatter: 'prose',
rulesDirectory: './tslint/rules/',
configuration: grunt.file.readJSON('./tslint/tslint.json')
},
src: [
"src/engine/*.ts",
"src/engine/Actions/*.ts",
"src/engine/Collision/*.ts",
"src/engine/Drawing/*.ts",
"src/engine/Input/*.ts",
"src/engine/Interfaces/*.ts",
"src/engine/PostProcessing/*.ts",
"src/engine/Traits/*.ts",
"src/engine/Util/*.ts",
"src/sandbox/web/*.ts",
"src/spec/*.ts",
// exclusions
"!src/spec/jasmine.d.ts",
"!src/spec/require.d.ts"
]
},
coveralls: {
main: {
src: './coverage/lcov.info',
options: {
force: true
}
}
}
});
//
// Load NPM Grunt tasks as dependencies
//
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-minified');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-jasmine-node-coverage');
grunt.loadNpmTasks('grunt-tslint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-coveralls');
//
// Register available Grunt tasks
//
// Run tests
grunt.registerTask('tests', ['shell:specs', 'jasmine_node']);
// Compile sample game
grunt.registerTask('sample', ['shell:sample']);
grunt.registerTask('visual', ['shell:visual']);
// Default task - compile, test, build dists
grunt.registerTask('default', ['tslint:src', 'tests', 'coveralls', 'shell:tsc', 'minified', 'concat', 'copy', 'sample', 'visual', 'shell:nuget']);
grunt.registerTask('compile', ['shell:tsc', 'minified', 'concat', 'copy', 'shell:nuget'])
grunt.registerTask('server', [])
// Travis task - for Travis CI
grunt.registerTask('travis', 'default');
};