-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgulpfile.js
285 lines (236 loc) · 7.52 KB
/
gulpfile.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
'use strict'
require('colors')
const fs = require('fs')
const path = require('path')
const gulp = require('gulp')
const ts = require('gulp-typescript')
const tslint = require('gulp-tslint')
const mocha = require('gulp-mocha')
const {exec} = require('child_process')
const {format} = require('util')
const readline = require('readline')
const ROOT = __dirname
const SRC_DIR = path.join(ROOT, 'src', 'v4')
const TS_DIR = path.join(SRC_DIR, 'ts')
const JS_DIR = path.join(SRC_DIR, 'js')
const TEST_DIR = path.join(JS_DIR, 'test')
const V1_DIR = path.join(ROOT, 'src', 'v1')
// const V1_JS_DIR = path.join(V1_DIR, 'js')
const tsProd = ts.createProject('tsconfig.json')
// const tsV1 = ts.createProject(path.join(V1_DIR, 'tsconfig.json'))
function tsc(){
return gulp.src(TS_DIR + '/**/*.ts')
.pipe(tsProd())
.pipe(gulp.dest(JS_DIR))
}
function tslinter(){
return gulp.src(TS_DIR + '/**/*.ts')
.pipe(tslint())
.pipe(tslint.report())
}
function tscV1(cb){
const cmd = `cd ${V1_DIR} && tsc`
exec(cmd, cb)
}
function createDTs(){
return gulp.src(TS_DIR + '/**/*.ts')
.pipe(ts({
outFile: 'smashgg.js',
declaration: true
}))
.pipe(gulp.dest(__dirname))
}
function test(){
return gulp.src(TEST_DIR)
.pipe(mocha())
}
function testTournament(){
return gulp.src(path.join(TEST_DIR, 'tournament.test.js'))
.pipe(mocha())
}
function testEvent(){
return gulp.src(path.join(TEST_DIR, 'event.test.js'))
.pipe(mocha())
}
function testPhase(){
return gulp.src(path.join(TEST_DIR, 'phase.test.js'))
.pipe(mocha())
}
function testPhaseGroup(){
return gulp.src(path.join(TEST_DIR, 'phaseGroup.test.js'))
.pipe(mocha())
}
function testCache(){
return gulp.src(path.join(TEST_DIR, 'testZCache.js'))
.pipe(mocha())
}
function testUser(){
return gulp.src(path.join(TEST_DIR, 'user.test.js'))
.pipe(mocha())
}
function testEntrant(){
return gulp.src(path.join(TEST_DIR, 'entrant.test.js'))
.pipe(mocha())
}
function testAttendee(){
return gulp.src(path.join(TEST_DIR, 'attendee.test.js'))
.pipe(mocha())
}
function testPlayer(){
return gulp.src(path.join(TEST_DIR, 'player.test.js'))
.pipe(mocha())
}
function testSet(){
return gulp.src(path.join(TEST_DIR, 'set.test.js'))
.pipe(mocha())
}
function testGame(){
return gulp.src(path.join(TEST_DIR, 'game.test.js'))
.pipe(mocha())
}
function testStream(){
return gulp.src(path.join(TEST_DIR, 'stream.test.js'))
.pipe(mocha())
}
function testStreamQueue(){
return gulp.src(path.join(TEST_DIR, 'streamQueue.test.js'))
.pipe(mocha())
}
function testV1(){
return gulp.src(path.join(ROOT, 'src', 'v1', 'js', 'test'))
.pipe(mocha())
}
function sandbox(){
require('./sandbox/sandbox')
}
function watch(){
return gulp.watch(TS_DIR + '/**/*.ts', gulp.parallel(tsc))
}
function publish(cb){
exec('npm publish', (err, stdout, stderr) => {
console.log(stdout)
console.error(stderr)
cb(err)
})
}
function getQueries(cb){
let queries = require('./src/v4/js/lib/scripts/schema')
for(var prop in queries){
console.log('=================')
console.log(prop)
console.log('----------')
console.log(queries[prop])
console.log('=================')
}
cb(null)
}
function deploymentWarningMessage(cb){
const message = format(
'%s: %s',
'WARNING'.red,
'Before deployment, please commit your code and make sure you are logged into git and npm'
)
console.log(message)
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
})
rl.question('Do you wish to proceed? [y]', (answer) => {
rl.close()
if(answer != null && answer.toString().toLowerCase() == 'y')
cb()
else
cb(new Error('Deployment Cancelled'))
})
}
function updateMajor(cb){
updatePackageJsonVersion(cb, 1)
}
function updateMinor(cb){
updatePackageJsonVersion(cb, 0, 1)
}
function updatePatch(cb){
updatePackageJsonVersion(cb, 0, 0, 1)
}
function gitTag(cb){
const version = getVersionFromPackageJson()
const cmd = `git tag ${version}`
exec(cmd, cb)
}
function gitCommit(cb){
const version = getVersionFromPackageJson()
const cmd = `git add . && git commit -m "${version}"`
exec(cmd, cb)
}
function gitPush(cb){
const cmd = 'git push && git push --tags'
exec(cmd, cb)
}
function npmPublish(cb){
const cmd = 'npm publish'
exec(cmd, cb)
}
function getVersionFromPackageJson(){
const packageJsonPath = path.join(__dirname, 'package.json')
const packageJsonContent = fs.readFileSync(packageJsonPath, 'utf8')
const versionRegex = new RegExp(/("version"[\s]*:[\s]*"([0-9]+.[0-9]+.[0-9]+)")/)
if(!versionRegex.test(packageJsonContent))
throw new Error('No version property in package json')
const currentVersionMatch = versionRegex.exec(packageJsonContent)
return currentVersionMatch[2]
}
function updatePackageJsonVersion(cb, majorIncrement=0, minorIncrement=0, patchIncrement=0){
if(majorIncrement == 0 && minorIncrement == 0 && patchIncrement == 0)
throw new Error('must have at least one incremented version number')
const packageJsonPath = path.join(__dirname, 'package.json')
const packageJsonContent = fs.readFileSync(packageJsonPath, 'utf8')
const versionRegex = new RegExp(/("version"[\s]*:[\s]*"([0-9]+.[0-9]+.[0-9]+)")/)
const majMinPatchRegex = new RegExp(/([0-9]+).([0-9]+).([0-9]+)/)
if(!versionRegex.test(packageJsonContent))
throw new Error('No version property in package json')
const currentVersionMatch = versionRegex.exec(packageJsonContent)
const currentVersion = majMinPatchRegex.exec(currentVersionMatch[2])
let major = parseInt(currentVersion[1]) + majorIncrement
let minor = parseInt(currentVersion[2]) + minorIncrement
let patch = parseInt(currentVersion[3]) + patchIncrement
const newVersion = `${major}.${minor}.${patch}`
const replacement = `"version": "${newVersion}"`
const newContent = packageJsonContent.replace(versionRegex, replacement)
//fs.writeFileSync(packageJsonPath, newContent, 'utf8')
fs.writeFile(packageJsonPath, newContent, 'utf8', cb)
}
exports.tsc = tsc
exports.tslint = tslinter
exports.tscV1 = tscV1
exports.createDTs = createDTs
exports.watch = watch
exports.sandbox = gulp.series(tsc, sandbox)
exports.getQueries = getQueries
exports.publish = gulp.series(tsc, publish)
exports.updateMajor = updateMajor
exports.updateMinor = updateMinor
exports.updatePatch = updatePatch
exports.preDeploy = gulp.series(deploymentWarningMessage, tslinter, tsc, tscV1)
exports.preDeployRaw = gulp.series(tslinter, tsc, tscV1)
exports.preDeployYeahYeahDadIKnowWhatImDoing = gulp.series(tslinter, tsc, tscV1)
exports.deployPatch = gulp.series(this.preDeploy, updatePatch, gitCommit, gitTag, gitPush, npmPublish)
exports.deployMinor = gulp.series(this.preDeploy, updateMinor, gitCommit, gitTag, gitPush, npmPublish)
exports.deployMajor = gulp.series(this.preDeploy, updateMajor, gitCommit, gitTag, gitPush, npmPublish)
exports.deploy = this.deployPatch
exports.getPackageVersion = getVersionFromPackageJson
exports.test = gulp.series(tsc, test)
exports.testTournament = gulp.series(tsc, testTournament)
exports.testEvent = gulp.series(tsc, testEvent)
exports.testPhase = gulp.series(tsc, testPhase)
exports.testPhaseGroup = gulp.series(tsc, testPhaseGroup)
exports.testCache = gulp.series(tsc, testCache)
exports.testPlayer = gulp.series(tsc, testPlayer)
exports.testSet = gulp.series(tsc, testSet)
exports.testGame = gulp.series(tsc, testGame)
exports.testUser = gulp.series(tsc, testUser)
exports.testEntrant = gulp.series(tsc, testEntrant)
exports.testAttendee = gulp.series(tsc, testAttendee)
exports.testPlayer = gulp.series(tsc, testPlayer)
exports.testStream = gulp.series(tsc, testStream)
exports.testStreamQueue = gulp.series(tsc, testStreamQueue)
exports.testV1 = testV1