FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
TypeScript/Jakefile.js at arrayReduce · UmeshP53/TypeScript · GitHub
UmeshP53
/
TypeScript
Public
forked from
microsoft/TypeScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
TypeScript
/
Jakefile.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
768 lines (676 loc) · 28.5 KB
Breadcrumbs
TypeScript
/
Jakefile.js
Copy path
File metadata and controls
768 lines (676 loc) · 28.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
// This file contains the build logic for the public repo
//
@ts
-check
/// <reference types="jake" />
const
fs
=
require
(
"fs"
)
;
const
os
=
require
(
"os"
)
;
const
path
=
require
(
"path"
)
;
const
fold
=
require
(
"travis-fold"
)
;
const
ts
=
require
(
"./lib/typescript"
)
;
const
del
=
require
(
"del"
)
;
const
getDirSize
=
require
(
"./scripts/build/getDirSize"
)
;
// add node_modules to path so we don't need global modules, prefer the modules by adding them first
var
nodeModulesPathPrefix
=
path
.
resolve
(
"./node_modules/.bin/"
)
+
path
.
delimiter
;
if
(
process
.
env
.
path
!==
undefined
)
{
process
.
env
.
path
=
nodeModulesPathPrefix
+
process
.
env
.
path
;
}
else
if
(
process
.
env
.
PATH
!==
undefined
)
{
process
.
env
.
PATH
=
nodeModulesPathPrefix
+
process
.
env
.
PATH
;
}
const
host
=
process
.
env
.
TYPESCRIPT_HOST
||
process
.
env
.
host
||
"node"
;
const
locales
=
[
"cs"
,
"de"
,
"es"
,
"fr"
,
"it"
,
"ja"
,
"ko"
,
"pl"
,
"pt-BR"
,
"ru"
,
"tr"
,
"zh-CN"
,
"zh-TW"
]
;
const
defaultTestTimeout
=
40000
;
let
useDebugMode
=
true
;
const
TaskNames
=
{
local
:
"local"
,
runtests
:
"runtests"
,
runtestsParallel
:
"runtests-parallel"
,
buildRules
:
"build-rules"
,
clean
:
"clean"
,
lib
:
"lib"
,
buildFoldStart
:
"build-fold-start"
,
buildFoldEnd
:
"build-fold-end"
,
generateDiagnostics
:
"generate-diagnostics"
,
coreBuild
:
"core-build"
,
tsc
:
"tsc"
,
lkg
:
"LKG"
,
release
:
"release"
,
lssl
:
"lssl"
,
lint
:
"lint"
,
scripts
:
"scripts"
,
localize
:
"localize"
,
configureInsiders
:
"configure-insiders"
,
publishInsiders
:
"publish-insiders"
,
configureNightly
:
"configure-nightly"
,
publishNightly
:
"publish-nightly"
}
;
const
Paths
=
{
}
;
Paths
.
lkg
=
"lib"
;
Paths
.
lkgCompiler
=
"lib/tsc.js"
;
Paths
.
built
=
"built"
;
Paths
.
builtLocal
=
"built/local"
;
Paths
.
builtLocalCompiler
=
"built/local/tsc.js"
;
Paths
.
builtLocalTSServer
=
"built/local/tsserver.js"
;
Paths
.
builtLocalRun
=
"built/local/run.js"
;
Paths
.
releaseCompiler
=
"built/local/tsc.release.js"
;
Paths
.
typesMapOutput
=
"built/local/typesMap.json"
;
Paths
.
typescriptFile
=
"built/local/typescript.js"
;
Paths
.
servicesFile
=
"built/local/typescriptServices.js"
;
Paths
.
servicesDefinitionFile
=
"built/local/typescriptServices.d.ts"
;
Paths
.
typescriptDefinitionFile
=
"built/local/typescript.d.ts"
;
Paths
.
typescriptStandaloneDefinitionFile
=
"built/local/typescript_standalone.d.ts"
;
Paths
.
tsserverLibraryDefinitionFile
=
"built/local/tsserverlibrary.d.ts"
;
Paths
.
baselines
=
{
}
;
Paths
.
baselines
.
local
=
"tests/baselines/local"
;
Paths
.
baselines
.
localTest262
=
"tests/baselines/test262/local"
;
Paths
.
baselines
.
localRwc
=
"internal/baselines/rwc/local"
;
Paths
.
baselines
.
reference
=
"tests/baselines/reference"
;
Paths
.
baselines
.
referenceTest262
=
"tests/baselines/test262/reference"
;
Paths
.
baselines
.
referenceRwc
=
"internal/baselines/rwc/reference"
;
Paths
.
copyright
=
"CopyrightNotice.txt"
;
Paths
.
thirdParty
=
"ThirdPartyNoticeText.txt"
;
Paths
.
processDiagnosticMessagesJs
=
"scripts/processDiagnosticMessages.js"
;
Paths
.
diagnosticInformationMap
=
"src/compiler/diagnosticInformationMap.generated.ts"
;
Paths
.
diagnosticMessagesJson
=
"src/compiler/diagnosticMessages.json"
;
Paths
.
diagnosticGeneratedJson
=
"src/compiler/diagnosticMessages.generated.json"
;
Paths
.
builtDiagnosticGeneratedJson
=
"built/local/diagnosticMessages.generated.json"
;
Paths
.
lcl
=
"src/loc/lcl"
Paths
.
locLcg
=
"built/local/enu/diagnosticMessages.generated.json.lcg"
;
Paths
.
generatedLCGFile
=
path
.
join
(
Paths
.
builtLocal
,
"enu"
,
"diagnosticMessages.generated.json.lcg"
)
;
Paths
.
library
=
"src/lib"
;
Paths
.
srcServer
=
"src/server"
;
Paths
.
scripts
=
{
}
;
Paths
.
scripts
.
generateLocalizedDiagnosticMessages
=
"scripts/generateLocalizedDiagnosticMessages.js"
;
Paths
.
scripts
.
processDiagnosticMessages
=
"scripts/processDiagnosticMessages.js"
;
Paths
.
scripts
.
produceLKG
=
"scripts/produceLKG.js"
;
Paths
.
scripts
.
configurePrerelease
=
"scripts/configurePrerelease.js"
;
Paths
.
packageJson
=
"package.json"
;
Paths
.
versionFile
=
"src/compiler/core.ts"
;
const
ConfigFileFor
=
{
tsc
:
"src/tsc"
,
tscRelease
:
"src/tsc/tsconfig.release.json"
,
tsserver
:
"src/tsserver"
,
runjs
:
"src/testRunner"
,
lint
:
"scripts/tslint"
,
scripts
:
"scripts"
,
all
:
"src"
}
;
const
ExpectedLKGFiles
=
[
"tsc.js"
,
"tsserver.js"
,
"typescriptServices.js"
,
"typescriptServices.d.ts"
,
"typescript.js"
,
"typescript.d.ts"
,
"cancellationToken.js"
,
"typingsInstaller.js"
,
"protocol.d.ts"
,
"watchGuard.js"
]
;
directory
(
Paths
.
builtLocal
)
;
// Local target to build the compiler and services
desc
(
"Builds the full compiler and services"
)
;
task
(
TaskNames
.
local
,
[
TaskNames
.
buildFoldStart
,
TaskNames
.
coreBuild
,
TaskNames
.
localize
,
TaskNames
.
buildFoldEnd
]
)
;
task
(
"default"
,
[
TaskNames
.
local
]
)
;
const
RunTestsPrereqs
=
[
TaskNames
.
lib
,
Paths
.
servicesDefinitionFile
,
Paths
.
tsserverLibraryDefinitionFile
]
;
desc
(
"Runs all the tests in parallel using the built run.js file. Optional arguments are: t[ests]=category1|category2|... d[ebug]=true."
)
;
task
(
TaskNames
.
runtestsParallel
,
RunTestsPrereqs
,
function
(
)
{
tsbuild
(
[
ConfigFileFor
.
runjs
]
,
true
,
(
)
=>
{
runConsoleTests
(
"min"
,
/*parallel*/
true
)
;
}
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Runs all the tests in parallel using the built run.js file. Optional arguments are: t[ests]=category1|category2|... d[ebug]=true."
)
;
task
(
TaskNames
.
runtests
,
RunTestsPrereqs
,
function
(
)
{
tsbuild
(
[
ConfigFileFor
.
runjs
]
,
true
,
(
)
=>
{
runConsoleTests
(
'mocha-fivemat-progress-reporter'
,
/*runInParallel*/
false
)
;
}
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Generates a diagnostic file in TypeScript based on an input JSON file"
)
;
task
(
TaskNames
.
generateDiagnostics
,
[
Paths
.
diagnosticInformationMap
]
)
;
const
libraryTargets
=
getLibraryTargets
(
)
;
desc
(
"Builds the library targets"
)
;
task
(
TaskNames
.
lib
,
libraryTargets
)
;
desc
(
"Builds internal scripts"
)
;
task
(
TaskNames
.
scripts
,
[
TaskNames
.
coreBuild
]
,
function
(
)
{
tsbuild
(
[
ConfigFileFor
.
scripts
]
,
true
,
(
)
=>
{
complete
(
)
;
}
)
;
}
,
{
async
:
true
}
)
;
task
(
Paths
.
releaseCompiler
,
function
(
)
{
tsbuild
(
[
ConfigFileFor
.
tscRelease
]
,
true
,
(
)
=>
{
complete
(
)
;
}
)
;
}
,
{
async
:
true
}
)
;
// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
desc
(
"Makes a new LKG out of the built js files"
)
;
task
(
TaskNames
.
lkg
,
[
TaskNames
.
scripts
,
TaskNames
.
release
,
TaskNames
.
local
,
Paths
.
servicesDefinitionFile
,
Paths
.
tsserverLibraryDefinitionFile
,
Paths
.
releaseCompiler
,
...
libraryTargets
]
,
(
)
=>
{
const
sizeBefore
=
getDirSize
(
Paths
.
lkg
)
;
exec
(
`
${
host
}
${
Paths
.
scripts
.
produceLKG
}
`
,
(
)
=>
{
const
sizeAfter
=
getDirSize
(
Paths
.
lkg
)
;
if
(
sizeAfter
>
(
sizeBefore
*
1.10
)
)
{
throw
new
Error
(
"The lib folder increased by 10% or more. This likely indicates a bug."
)
;
}
complete
(
)
;
}
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Makes the most recent test results the new baseline, overwriting the old baseline"
)
;
task
(
"baseline-accept"
,
function
(
)
{
acceptBaseline
(
Paths
.
baselines
.
local
,
Paths
.
baselines
.
reference
)
;
}
)
;
desc
(
"Makes the most recent rwc test results the new baseline, overwriting the old baseline"
)
;
task
(
"baseline-accept-rwc"
,
function
(
)
{
acceptBaseline
(
Paths
.
baselines
.
localRwc
,
Paths
.
baselines
.
referenceRwc
)
;
}
)
;
desc
(
"Makes the most recent test262 test results the new baseline, overwriting the old baseline"
)
;
task
(
"baseline-accept-test262"
,
function
(
)
{
acceptBaseline
(
Paths
.
baselines
.
localTest262
,
Paths
.
baselines
.
referenceTest262
)
;
}
)
;
desc
(
"Runs tslint on the compiler sources. Optional arguments are: f[iles]=regex"
)
;
task
(
TaskNames
.
lint
,
[
TaskNames
.
buildRules
]
,
(
)
=>
{
if
(
fold
.
isTravis
(
)
)
console
.
log
(
fold
.
start
(
"lint"
)
)
;
function
lint
(
project
,
cb
)
{
const
fix
=
process
.
env
.
fix
||
process
.
env
.
f
;
const
cmd
=
`node node_modules/tslint/bin/tslint --project
${
project
}
--formatters-dir ./built/local/tslint/formatters --format autolinkableStylish
${
fix
?
" --fix"
:
""
}
`
;
exec
(
cmd
,
cb
)
;
}
lint
(
"scripts/tslint/tsconfig.json"
,
(
)
=>
lint
(
"src/tsconfig-base.json"
,
(
)
=>
{
if
(
fold
.
isTravis
(
)
)
console
.
log
(
fold
.
end
(
"lint"
)
)
;
complete
(
)
;
}
)
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Diffs the compiler baselines using the diff tool specified by the 'DIFF' environment variable"
)
;
task
(
'diff'
,
function
(
)
{
var
cmd
=
`"
${
getDiffTool
(
)
}
"
${
Paths
.
baselines
.
reference
}
${
Paths
.
baselines
.
local
}
`
;
exec
(
cmd
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Diffs the RWC baselines using the diff tool specified by the 'DIFF' environment variable"
)
;
task
(
'diff-rwc'
,
function
(
)
{
var
cmd
=
`"
${
getDiffTool
(
)
}
"
${
Paths
.
baselines
.
referenceRwc
}
${
Paths
.
baselines
.
localRwc
}
`
;
exec
(
cmd
)
;
}
,
{
async
:
true
}
)
;
task
(
TaskNames
.
configureNightly
,
[
TaskNames
.
scripts
]
,
function
(
)
{
const
cmd
=
`
${
host
}
${
Paths
.
scripts
.
configurePrerelease
}
dev
${
Paths
.
packageJson
}
${
Paths
.
versionFile
}
`
;
exec
(
cmd
,
(
)
=>
complete
(
)
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Configure, build, test, and publish the nightly release."
)
;
task
(
TaskNames
.
publishNightly
,
[
TaskNames
.
coreBuild
,
TaskNames
.
configureNightly
,
TaskNames
.
lkg
,
"setDebugMode"
,
"runtests-parallel"
]
,
function
(
)
{
var
cmd
=
"npm publish --tag next"
;
exec
(
cmd
,
(
)
=>
complete
(
)
)
;
}
,
{
async
:
true
}
)
;
task
(
TaskNames
.
configureInsiders
,
[
TaskNames
.
scripts
]
,
function
(
)
{
const
cmd
=
`
${
host
}
${
Paths
.
scripts
.
configurePrerelease
}
insiders
${
Paths
.
packageJson
}
${
Paths
.
versionFile
}
`
;
exec
(
cmd
,
(
)
=>
complete
(
)
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Configure, build, test, and publish the insiders release."
)
;
task
(
TaskNames
.
publishInsiders
,
[
TaskNames
.
coreBuild
,
TaskNames
.
configureInsiders
,
TaskNames
.
lkg
,
"setDebugMode"
,
"runtests-parallel"
]
,
function
(
)
{
var
cmd
=
"npm publish --tag insiders"
;
exec
(
cmd
,
(
)
=>
complete
(
)
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Sets the release mode flag"
)
;
task
(
"release"
,
function
(
)
{
useDebugMode
=
false
;
}
)
;
desc
(
"Clears the release mode flag"
)
;
task
(
"setDebugMode"
,
function
(
)
{
useDebugMode
=
true
;
}
)
;
desc
(
"Generates localized diagnostic messages"
)
;
task
(
TaskNames
.
localize
,
[
Paths
.
generatedLCGFile
]
)
;
desc
(
"Emit the start of the build fold"
)
;
task
(
TaskNames
.
buildFoldStart
,
[
]
,
function
(
)
{
if
(
fold
.
isTravis
(
)
)
console
.
log
(
fold
.
start
(
"build"
)
)
;
}
)
;
desc
(
"Emit the end of the build fold"
)
;
task
(
TaskNames
.
buildFoldEnd
,
[
]
,
function
(
)
{
if
(
fold
.
isTravis
(
)
)
console
.
log
(
fold
.
end
(
"build"
)
)
;
}
)
;
desc
(
"Compiles tslint rules to js"
)
;
task
(
TaskNames
.
buildRules
,
[
]
,
function
(
)
{
tsbuild
(
ConfigFileFor
.
lint
,
false
,
(
)
=>
complete
(
)
)
;
}
,
{
async
:
true
}
)
;
desc
(
"Cleans the compiler output, declare files, and tests"
)
;
task
(
TaskNames
.
clean
,
function
(
)
{
jake
.
rmRf
(
Paths
.
built
)
;
}
)
;
desc
(
"Generates the LCG file for localization"
)
;
task
(
"localize"
,
[
Paths
.
generatedLCGFile
]
)
;
task
(
TaskNames
.
tsc
,
[
Paths
.
diagnosticInformationMap
,
TaskNames
.
lib
]
,
function
(
)
{
tsbuild
(
ConfigFileFor
.
tsc
,
true
,
(
)
=>
{
complete
(
)
;
}
)
;
}
,
{
async
:
true
}
)
;
task
(
TaskNames
.
coreBuild
,
[
Paths
.
diagnosticInformationMap
,
TaskNames
.
lib
]
,
function
(
)
{
tsbuild
(
ConfigFileFor
.
all
,
true
,
(
)
=>
{
complete
(
)
;
}
)
;
}
,
{
async
:
true
}
)
;
file
(
Paths
.
diagnosticMessagesJson
)
;
file
(
Paths
.
typesMapOutput
,
/**
@type
{
*
} */
(
function
(
)
{
var
content
=
readFileSync
(
path
.
join
(
Paths
.
srcServer
,
'typesMap.json'
)
)
;
// Validate that it's valid JSON
try
{
JSON
.
parse
(
content
)
;
}
catch
(
e
)
{
console
.
log
(
"Parse error in typesMap.json: "
+
e
)
;
}
fs
.
writeFileSync
(
Paths
.
typesMapOutput
,
content
)
;
}
)
)
;
file
(
Paths
.
builtDiagnosticGeneratedJson
,
[
Paths
.
diagnosticGeneratedJson
]
,
function
(
)
{
if
(
fs
.
existsSync
(
Paths
.
builtLocal
)
)
{
jake
.
cpR
(
Paths
.
diagnosticGeneratedJson
,
Paths
.
builtDiagnosticGeneratedJson
)
;
}
}
)
;
// Localized diagnostics
file
(
Paths
.
generatedLCGFile
,
[
TaskNames
.
scripts
,
Paths
.
diagnosticInformationMap
,
Paths
.
diagnosticGeneratedJson
]
,
function
(
)
{
const
cmd
=
`
${
host
}
${
Paths
.
scripts
.
generateLocalizedDiagnosticMessages
}
${
Paths
.
lcl
}
${
Paths
.
builtLocal
}
${
Paths
.
diagnosticGeneratedJson
}
`
exec
(
cmd
,
complete
)
;
}
,
{
async
:
true
}
)
;
// The generated diagnostics map; built for the compiler and for the 'generate-diagnostics' task
file
(
Paths
.
diagnosticInformationMap
,
[
Paths
.
diagnosticMessagesJson
]
,
function
(
)
{
tsbuild
(
ConfigFileFor
.
scripts
,
true
,
(
)
=>
{
const
cmd
=
`
${
host
}
${
Paths
.
scripts
.
processDiagnosticMessages
}
${
Paths
.
diagnosticMessagesJson
}
`
;
exec
(
cmd
,
complete
)
;
}
)
;
}
,
{
async
:
true
}
)
;
// tsserverlibrary.d.ts
file
(
Paths
.
tsserverLibraryDefinitionFile
,
[
TaskNames
.
coreBuild
]
,
function
(
)
{
const
sources
=
[
"compiler.d.ts"
,
"jsTyping.d.ts"
,
"services.d.ts"
,
"server.d.ts"
]
.
map
(
f
=>
path
.
join
(
Paths
.
builtLocal
,
f
)
)
;
let
output
=
""
;
for
(
const
f
of
sources
)
{
output
=
output
+
"\n"
+
removeConstModifierFromEnumDeclarations
(
readFileSync
(
f
)
)
;
}
output
=
output
+
"\nexport = ts;\nexport as namespace ts;"
;
fs
.
writeFileSync
(
Paths
.
tsserverLibraryDefinitionFile
,
output
,
{
encoding
:
"utf-8"
}
)
;
}
)
;
// typescriptservices.d.ts
file
(
Paths
.
servicesDefinitionFile
,
[
TaskNames
.
coreBuild
]
,
function
(
)
{
// Generate a config file
const
files
=
[
]
;
recur
(
`src/services/tsconfig.json`
)
;
const
config
=
{
extends
:
"../../src/tsconfig-base"
,
compilerOptions
:
{
"stripInternal"
:
true
,
"outFile"
:
"typescriptServices.js"
}
,
files
}
;
const
configFilePath
=
`built/local/typescriptServices.tsconfig.json`
;
fs
.
writeFileSync
(
configFilePath
,
JSON
.
stringify
(
config
,
undefined
,
2
)
)
;
tsbuild
(
configFilePath
,
false
,
(
)
=>
{
const
servicesContent
=
readFileSync
(
Paths
.
servicesDefinitionFile
)
;
const
servicesContentWithoutConstEnums
=
removeConstModifierFromEnumDeclarations
(
servicesContent
)
;
fs
.
writeFileSync
(
Paths
.
servicesDefinitionFile
,
servicesContentWithoutConstEnums
)
;
// Also build typescript.js, typescript.js.map, and typescript.d.ts
jake
.
cpR
(
Paths
.
servicesFile
,
Paths
.
typescriptFile
)
;
if
(
fs
.
existsSync
(
Paths
.
servicesFile
+
".map"
)
)
{
jake
.
cpR
(
Paths
.
servicesFile
+
".map"
,
Paths
.
typescriptFile
+
".map"
)
;
}
fs
.
writeFileSync
(
Paths
.
typescriptDefinitionFile
,
servicesContentWithoutConstEnums
+
"\r\nexport = ts"
,
{
encoding
:
"utf-8"
}
)
;
// And typescript_standalone.d.ts
fs
.
writeFileSync
(
Paths
.
typescriptStandaloneDefinitionFile
,
servicesContentWithoutConstEnums
.
replace
(
/
d
e
c
l
a
r
e
(
n
a
m
e
s
p
a
c
e
|
m
o
d
u
l
e
)
t
s
(
\.
.
+
)
?
\{
/
g
,
'declare module "typescript" {'
)
,
{
encoding
:
"utf-8"
}
)
;
complete
(
)
;
}
)
;
function
recur
(
configPath
)
{
const
cfgFile
=
readJson
(
configPath
)
;
if
(
cfgFile
.
references
)
{
for
(
const
ref
of
cfgFile
.
references
)
{
recur
(
path
.
join
(
path
.
dirname
(
configPath
)
,
ref
.
path
,
"tsconfig.json"
)
)
;
}
}
for
(
const
file
of
cfgFile
.
files
)
{
files
.
push
(
path
.
join
(
`../../`
,
path
.
dirname
(
configPath
)
,
file
)
)
;
}
}
}
,
{
async
:
true
}
)
;
function
getLibraryTargets
(
)
{
/**
@type
{
{ libs: string[], paths?: Record<string, string>, sources?: Record<string, string[]> }
} */
const
libraries
=
readJson
(
"./src/lib/libs.json"
)
;
return
libraries
.
libs
.
map
(
function
(
lib
)
{
const
relativeSources
=
[
"header.d.ts"
]
.
concat
(
libraries
.
sources
&&
libraries
.
sources
[
lib
]
||
[
lib
+
".d.ts"
]
)
;
const
relativeTarget
=
libraries
.
paths
&&
libraries
.
paths
[
lib
]
||
(
"lib."
+
lib
+
".d.ts"
)
;
const
sources
=
[
Paths
.
copyright
]
.
concat
(
relativeSources
.
map
(
s
=>
path
.
join
(
Paths
.
library
,
s
)
)
)
;
const
target
=
path
.
join
(
Paths
.
builtLocal
,
relativeTarget
)
;
file
(
target
,
[
Paths
.
builtLocal
]
.
concat
(
sources
)
,
function
(
)
{
concatenateFiles
(
target
,
sources
)
;
}
)
;
return
target
;
}
)
;
}
function
runConsoleTests
(
defaultReporter
,
runInParallel
)
{
var
dirty
=
process
.
env
.
dirty
;
if
(
!
dirty
)
{
cleanTestDirs
(
)
;
}
let
testTimeout
=
process
.
env
.
timeout
||
defaultTestTimeout
;
const
debug
=
process
.
env
.
debug
||
process
.
env
[
"debug-brk"
]
||
process
.
env
.
d
;
const
inspect
=
process
.
env
.
inspect
||
process
.
env
[
"inspect-brk"
]
||
process
.
env
.
i
;
const
runners
=
process
.
env
.
runners
||
process
.
env
.
runner
||
process
.
env
.
ru
;
const
tests
=
process
.
env
.
test
||
process
.
env
.
tests
||
process
.
env
.
t
;
const
light
=
process
.
env
.
light
===
undefined
||
process
.
env
.
light
!==
"false"
;
const
failed
=
process
.
env
.
failed
;
const
keepFailed
=
process
.
env
.
keepFailed
||
failed
;
const
stackTraceLimit
=
process
.
env
.
stackTraceLimit
;
const
colorsFlag
=
process
.
env
.
color
||
process
.
env
.
colors
;
const
colors
=
colorsFlag
!==
"false"
&&
colorsFlag
!==
"0"
;
const
reporter
=
process
.
env
.
reporter
||
process
.
env
.
r
||
defaultReporter
;
const
bail
=
process
.
env
.
bail
||
process
.
env
.
b
;
const
lintFlag
=
process
.
env
.
lint
!==
'false'
;
const
testConfigFile
=
'test.config'
;
if
(
fs
.
existsSync
(
testConfigFile
)
)
{
fs
.
unlinkSync
(
testConfigFile
)
;
}
let
workerCount
,
taskConfigsFolder
;
if
(
runInParallel
)
{
// generate name to store task configuration files
const
prefix
=
os
.
tmpdir
(
)
+
"/ts-tests"
;
let
i
=
1
;
do
{
taskConfigsFolder
=
prefix
+
i
;
i
++
;
}
while
(
fs
.
existsSync
(
taskConfigsFolder
)
)
;
fs
.
mkdirSync
(
taskConfigsFolder
)
;
workerCount
=
process
.
env
.
workerCount
||
process
.
env
.
p
||
os
.
cpus
(
)
.
length
;
}
if
(
tests
&&
tests
.
toLocaleLowerCase
(
)
===
"rwc"
)
{
testTimeout
=
800000
;
}
if
(
tests
||
runners
||
light
||
testTimeout
||
taskConfigsFolder
||
keepFailed
)
{
writeTestConfigFile
(
tests
,
runners
,
light
,
taskConfigsFolder
,
workerCount
,
stackTraceLimit
,
colors
,
testTimeout
,
keepFailed
)
;
}
// timeout normally isn't necessary but Travis-CI has been timing out on compiler baselines occasionally
// default timeout is 2sec which really should be enough, but maybe we just need a small amount longer
if
(
!
runInParallel
)
{
var
startTime
=
Travis
.
mark
(
)
;
var
args
=
[
]
;
args
.
push
(
"-R"
,
"scripts/failed-tests"
)
;
args
.
push
(
"-O"
,
'"reporter='
+
reporter
+
(
keepFailed
?
",keepFailed=true"
:
""
)
+
'"'
)
;
if
(
tests
)
args
.
push
(
"-g"
,
`"
${
tests
}
"`
)
;
args
.
push
(
colors
?
"--colors"
:
"--no-colors"
)
;
if
(
bail
)
args
.
push
(
"--bail"
)
;
if
(
inspect
)
{
args
.
unshift
(
"--inspect-brk"
)
;
}
else
{
args
.
push
(
"-t"
,
testTimeout
)
;
}
args
.
push
(
Paths
.
builtLocalRun
)
;
var
cmd
;
if
(
failed
)
{
args
.
unshift
(
"scripts/run-failed-tests.js"
)
;
cmd
=
host
+
" "
+
args
.
join
(
" "
)
;
}
else
{
cmd
=
"mocha "
+
args
.
join
(
" "
)
;
}
var
savedNodeEnv
=
process
.
env
.
NODE_ENV
;
process
.
env
.
NODE_ENV
=
"development"
;
exec
(
cmd
,
function
(
)
{
process
.
env
.
NODE_ENV
=
savedNodeEnv
;
Travis
.
measure
(
startTime
)
;
runLinterAndComplete
(
)
;
}
,
function
(
e
,
status
)
{
process
.
env
.
NODE_ENV
=
savedNodeEnv
;
Travis
.
measure
(
startTime
)
;
finish
(
status
)
;
}
)
;
}
else
{
var
savedNodeEnv
=
process
.
env
.
NODE_ENV
;
process
.
env
.
NODE_ENV
=
"development"
;
var
startTime
=
Travis
.
mark
(
)
;
const
cmd
=
`
${
host
}
${
Paths
.
builtLocalRun
}
`
;
exec
(
cmd
,
function
(
)
{
// Tests succeeded; run 'lint' task
process
.
env
.
NODE_ENV
=
savedNodeEnv
;
Travis
.
measure
(
startTime
)
;
runLinterAndComplete
(
)
;
}
,
function
(
e
,
status
)
{
// Tests failed
process
.
env
.
NODE_ENV
=
savedNodeEnv
;
Travis
.
measure
(
startTime
)
;
finish
(
status
)
;
}
)
;
}
function
finish
(
errorStatus
)
{
deleteTemporaryProjectOutput
(
)
;
if
(
errorStatus
!==
undefined
)
{
fail
(
"Process exited with code "
+
errorStatus
)
;
}
else
{
complete
(
)
;
}
}
function
runLinterAndComplete
(
)
{
if
(
!
lintFlag
||
dirty
)
{
return
finish
(
)
;
}
var
lint
=
jake
.
Task
[
'lint'
]
;
lint
.
once
(
'complete'
,
function
(
)
{
finish
(
)
;
}
)
;
lint
.
invoke
(
)
;
}
function
deleteTemporaryProjectOutput
(
)
{
if
(
fs
.
existsSync
(
path
.
join
(
Paths
.
baselines
.
local
,
"projectOutput/"
)
)
)
{
jake
.
rmRf
(
path
.
join
(
Paths
.
baselines
.
local
,
"projectOutput/"
)
)
;
}
}
}
// used to pass data from jake command line directly to run.js
function
writeTestConfigFile
(
tests
,
runners
,
light
,
taskConfigsFolder
,
workerCount
,
stackTraceLimit
,
colors
,
testTimeout
,
keepFailed
)
{
var
testConfigContents
=
JSON
.
stringify
(
{
runners
:
runners
?
runners
.
split
(
","
)
:
undefined
,
test
:
tests
?
[
tests
]
:
undefined
,
light
:
light
,
workerCount
:
workerCount
,
taskConfigsFolder
:
taskConfigsFolder
,
stackTraceLimit
:
stackTraceLimit
,
noColor
:
!
colors
,
timeout
:
testTimeout
,
keepFailed
:
keepFailed
}
)
;
fs
.
writeFileSync
(
'test.config'
,
testConfigContents
,
{
encoding
:
"utf-8"
}
)
;
}
function
cleanTestDirs
(
)
{
// Clean the local baselines directory
if
(
fs
.
existsSync
(
Paths
.
baselines
.
local
)
)
{
del
.
sync
(
Paths
.
baselines
.
local
)
;
}
// Clean the local Rwc baselines directory
if
(
fs
.
existsSync
(
Paths
.
baselines
.
localRwc
)
)
{
del
.
sync
(
Paths
.
baselines
.
localRwc
)
;
}
jake
.
mkdirP
(
Paths
.
baselines
.
local
)
;
jake
.
mkdirP
(
Paths
.
baselines
.
localTest262
)
;
}
function
tsbuild
(
tsconfigPath
,
useLkg
=
true
,
done
=
undefined
)
{
const
startCompileTime
=
Travis
.
mark
(
)
;
const
compilerPath
=
useLkg
?
Paths
.
lkgCompiler
:
Paths
.
builtLocalCompiler
;
const
cmd
=
`
${
host
}
${
compilerPath
}
-b
${
Array
.
isArray
(
tsconfigPath
)
?
tsconfigPath
.
join
(
" "
)
:
tsconfigPath
}
`
;
exec
(
cmd
,
(
)
=>
{
// Success
Travis
.
measure
(
startCompileTime
)
;
done
?
done
(
)
:
complete
(
)
;
}
,
(
)
=>
{
// Fail
Travis
.
measure
(
startCompileTime
)
;
fail
(
`Compilation of
${
tsconfigPath
}
unsuccessful`
)
;
}
)
;
}
const
Travis
=
{
mark
(
)
{
if
(
!
fold
.
isTravis
(
)
)
return
;
var
stamp
=
process
.
hrtime
(
)
;
var
id
=
Math
.
floor
(
Math
.
random
(
)
*
0xFFFFFFFF
)
.
toString
(
16
)
;
console
.
log
(
"travis_time:start:"
+
id
+
"\r"
)
;
return
{
stamp
:
stamp
,
id
:
id
}
;
}
,
measure
(
marker
)
{
if
(
!
fold
.
isTravis
(
)
)
return
;
var
diff
=
process
.
hrtime
(
marker
.
stamp
)
;
var
total
=
[
marker
.
stamp
[
0
]
+
diff
[
0
]
,
marker
.
stamp
[
1
]
+
diff
[
1
]
]
;
console
.
log
(
"travis_time:end:"
+
marker
.
id
+
":start="
+
toNs
(
marker
.
stamp
)
+
",finish="
+
toNs
(
total
)
+
",duration="
+
toNs
(
diff
)
+
"\r"
)
;
}
}
;
function
buildLocalizedTargets
(
)
{
/**
* The localization target produces the two following transformations:
* 1. 'src\loc\lcl\<locale>\diagnosticMessages.generated.json.lcl' => 'built\local\<locale>\diagnosticMessages.generated.json'
* convert localized resources into a .json file the compiler can understand
* 2. 'src\compiler\diagnosticMessages.generated.json' => 'built\local\ENU\diagnosticMessages.generated.json.lcg'
* generate the lcg file (source of messages to localize) from the diagnosticMessages.generated.json
*/
const
localizationTargets
=
[
"cs"
,
"de"
,
"es"
,
"fr"
,
"it"
,
"ja"
,
"ko"
,
"pl"
,
"pt-br"
,
"ru"
,
"tr"
,
"zh-cn"
,
"zh-tw"
]
.
map
(
f
=>
path
.
join
(
Paths
.
builtLocal
,
f
)
)
.
concat
(
path
.
dirname
(
Paths
.
generatedLCGFile
)
)
;
}
function
toNs
(
diff
)
{
return
diff
[
0
]
*
1e9
+
diff
[
1
]
;
}
function
exec
(
cmd
,
successHandler
,
errorHandler
)
{
var
ex
=
jake
.
createExec
(
[
cmd
]
,
/**
@type
{
jake.ExecOptions
} */
(
{
windowsVerbatimArguments
:
true
,
interactive
:
true
}
)
)
;
// Add listeners for output and error
ex
.
addListener
(
"stdout"
,
function
(
output
)
{
process
.
stdout
.
write
(
output
)
;
}
)
;
ex
.
addListener
(
"stderr"
,
function
(
error
)
{
process
.
stderr
.
write
(
error
)
;
}
)
;
ex
.
addListener
(
"cmdEnd"
,
function
(
)
{
if
(
successHandler
)
{
successHandler
(
)
;
}
}
)
;
ex
.
addListener
(
"error"
,
function
(
e
,
status
)
{
if
(
errorHandler
)
{
errorHandler
(
e
,
status
)
;
}
else
{
fail
(
"Process exited with code "
+
status
)
;
}
}
)
;
console
.
log
(
cmd
)
;
ex
.
run
(
)
;
}
function
acceptBaseline
(
sourceFolder
,
targetFolder
)
{
console
.
log
(
'Accept baselines from '
+
sourceFolder
+
' to '
+
targetFolder
)
;
var
deleteEnding
=
'.delete'
;
jake
.
mkdirP
(
targetFolder
)
;
acceptBaselineFolder
(
sourceFolder
,
targetFolder
)
;
function
acceptBaselineFolder
(
sourceFolder
,
targetFolder
)
{
var
files
=
fs
.
readdirSync
(
sourceFolder
)
;
for
(
var
i
in
files
)
{
var
filename
=
files
[
i
]
;
var
fullLocalPath
=
path
.
join
(
sourceFolder
,
filename
)
;
var
stat
=
fs
.
statSync
(
fullLocalPath
)
;
if
(
stat
.
isFile
(
)
)
{
if
(
filename
.
substr
(
filename
.
length
-
deleteEnding
.
length
)
===
deleteEnding
)
{
filename
=
filename
.
substr
(
0
,
filename
.
length
-
deleteEnding
.
length
)
;
fs
.
unlinkSync
(
path
.
join
(
targetFolder
,
filename
)
)
;
}
else
{
var
target
=
path
.
join
(
targetFolder
,
filename
)
;
if
(
fs
.
existsSync
(
target
)
)
{
fs
.
unlinkSync
(
target
)
;
}
jake
.
mkdirP
(
path
.
dirname
(
target
)
)
;
fs
.
renameSync
(
path
.
join
(
sourceFolder
,
filename
)
,
target
)
;
}
}
else
if
(
stat
.
isDirectory
(
)
)
{
acceptBaselineFolder
(
fullLocalPath
,
path
.
join
(
targetFolder
,
filename
)
)
;
}
}
}
}
/**
@param
jsonPath {string} */
function
readJson
(
jsonPath
)
{
const
jsonText
=
readFileSync
(
jsonPath
)
;
const
result
=
ts
.
parseConfigFileTextToJson
(
jsonPath
,
jsonText
)
;
if
(
result
.
error
)
{
reportDiagnostics
(
[
result
.
error
]
)
;
throw
new
Error
(
"An error occurred during parse."
)
;
}
return
result
.
config
;
}
/**
@param
diagnostics {ts.Diagnostic[]} */
function
reportDiagnostics
(
diagnostics
)
{
console
.
log
(
diagnosticsToString
(
diagnostics
,
process
.
stdout
.
isTTY
)
)
;
}
/**
*
@param
diagnostics {ts.Diagnostic[]}
*
@param
[pretty] {boolean}
*/
function
diagnosticsToString
(
diagnostics
,
pretty
)
{
const
host
=
{
getCurrentDirectory
(
)
{
return
process
.
cwd
(
)
;
}
,
getCanonicalFileName
(
fileName
)
{
return
fileName
;
}
,
getNewLine
(
)
{
return
os
.
EOL
;
}
}
;
return
pretty
?
ts
.
formatDiagnosticsWithColorAndContext
(
diagnostics
,
host
)
:
ts
.
formatDiagnostics
(
diagnostics
,
host
)
;
}
/**
* Concatenate a list of sourceFiles to a destinationFile
*
@param
{
string
} destinationFile
*
@param
{
string[]
} sourceFiles
*
@param
{
string
} extraContent
*/
function
concatenateFiles
(
destinationFile
,
sourceFiles
,
extraContent
)
{
var
temp
=
"temptemp"
;
// append all files in sequence
var
text
=
""
;
for
(
var
i
=
0
;
i
<
sourceFiles
.
length
;
i
++
)
{
if
(
!
fs
.
existsSync
(
sourceFiles
[
i
]
)
)
{
fail
(
sourceFiles
[
i
]
+
" does not exist!"
)
;
}
if
(
i
>
0
)
{
text
+=
"\n\n"
;
}
text
+=
readFileSync
(
sourceFiles
[
i
]
)
.
replace
(
/
\r
?
\n
/
g
,
"\n"
)
;
}
if
(
extraContent
)
{
text
+=
extraContent
;
}
fs
.
writeFileSync
(
temp
,
text
)
;
// Move the file to the final destination
fs
.
renameSync
(
temp
,
destinationFile
)
;
}
function
appendToFile
(
path
,
content
)
{
fs
.
writeFileSync
(
path
,
readFileSync
(
path
)
+
"\r\n"
+
content
)
;
}
/**
*
*
@param
{
string
} path
*
@returns
string
*/
function
readFileSync
(
path
)
{
return
fs
.
readFileSync
(
path
,
{
encoding
:
"utf-8"
}
)
;
}
function
getDiffTool
(
)
{
var
program
=
process
.
env
[
'DIFF'
]
;
if
(
!
program
)
{
fail
(
"Add the 'DIFF' environment variable to the path of the program you want to use."
)
;
}
return
program
;
}
/**
* Replaces const enum declarations with non-const enums
*
@param
{
string
} text
*/
function
removeConstModifierFromEnumDeclarations
(
text
)
{
return
text
.
replace
(
/
^
(
\s
*
)
(
e
x
p
o
r
t
)
?
c
o
n
s
t
e
n
u
m
(
\S
+
)
{
(
\s
*
)
$
/
gm
,
'$1$2enum $3 {$4'
)
;
}
Back
|
FazBrowse Home
|
New Git URL