depflow 2.0.2 → 3.0.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +129 -58
- package/build/cli/DepFLowCLI.js +32 -16
- package/build/cli/DepFLowCLI.js.map +1 -1
- package/build/cli/bin.js +16 -12
- package/build/cli/bin.js.map +1 -1
- package/build/config/Config.d.ts +3 -3
- package/build/config/Config.js +3 -3
- package/build/config/ImportMap.d.ts +2 -3
- package/build/config/ImportMap.js +9 -10
- package/build/config/ImportMap.js.map +1 -1
- package/build/config/Tsconfig.d.ts +2 -2
- package/build/config/Tsconfig.js +7 -6
- package/build/config/Tsconfig.js.map +1 -1
- package/build/config/schemas.d.ts +604 -51
- package/build/config/schemas.js +36 -21
- package/build/config/schemas.js.map +1 -1
- package/build/support/Builder/Builder.d.ts +36 -0
- package/build/support/Builder/Builder.js +89 -0
- package/build/support/Builder/Builder.js.map +1 -0
- package/build/support/Dependency/Dependency.d.ts +38 -0
- package/build/support/Dependency/Dependency.js +14 -0
- package/build/support/Dependency/Dependency.js.map +1 -0
- package/build/support/Dependency/GitDependency.d.ts +20 -0
- package/build/support/Dependency/GitDependency.js +67 -0
- package/build/support/Dependency/GitDependency.js.map +1 -0
- package/build/support/Dependency/NpmDependency.d.ts +18 -0
- package/build/support/Dependency/NpmDependency.js +65 -0
- package/build/support/Dependency/NpmDependency.js.map +1 -0
- package/build/support/Dependency/Resolver.d.ts +7 -0
- package/build/support/Dependency/Resolver.js +4 -0
- package/build/support/Dependency/Resolver.js.map +1 -0
- package/build/support/PathResolver/AliasCompiler.d.ts +2 -2
- package/build/support/PathResolver/PathResolver.d.ts +3 -3
- package/build/support/PathResolver/PathResolver.js +6 -1
- package/build/support/PathResolver/PathResolver.js.map +1 -1
- package/build/support/Utils.d.ts +8 -0
- package/build/support/Utils.js +30 -0
- package/build/support/Utils.js.map +1 -1
- package/package.json +2 -2
- package/build/support/Dependency.d.ts +0 -109
- package/build/support/Dependency.js +0 -274
- package/build/support/Dependency.js.map +0 -1
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { Schema } from '@netfeez/common';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const ImportMap: Schema.Utils.FromObject<{
|
|
3
3
|
readonly imports: {
|
|
4
4
|
readonly type: "object";
|
|
5
|
+
readonly default: {};
|
|
5
6
|
};
|
|
6
7
|
readonly scopes: {
|
|
7
8
|
readonly type: "object";
|
|
9
|
+
readonly default: {};
|
|
8
10
|
};
|
|
9
11
|
}, undefined>;
|
|
10
|
-
export declare const
|
|
12
|
+
export declare const TsConfig: Schema.Utils.FromObject<{
|
|
11
13
|
readonly compilerOptions: {
|
|
12
14
|
readonly type: "object";
|
|
13
15
|
readonly properties: {
|
|
@@ -27,7 +29,35 @@ export declare const basicTsconfig: Schema.Utils.FromObject<{
|
|
|
27
29
|
readonly allowAdditionalProperties: true;
|
|
28
30
|
};
|
|
29
31
|
}, true>;
|
|
30
|
-
export declare const
|
|
32
|
+
export declare const ExtractorEntry: Schema.Utils.FromObject<{
|
|
33
|
+
readonly from: {
|
|
34
|
+
readonly type: "string";
|
|
35
|
+
readonly required: true;
|
|
36
|
+
};
|
|
37
|
+
readonly to: {
|
|
38
|
+
readonly type: "string";
|
|
39
|
+
readonly required: true;
|
|
40
|
+
};
|
|
41
|
+
readonly replacer: {
|
|
42
|
+
readonly union: [{
|
|
43
|
+
readonly type: "string";
|
|
44
|
+
}, {
|
|
45
|
+
readonly type: "object";
|
|
46
|
+
readonly properties: {
|
|
47
|
+
readonly search: {
|
|
48
|
+
readonly type: "string";
|
|
49
|
+
readonly required: true;
|
|
50
|
+
};
|
|
51
|
+
readonly replace: {
|
|
52
|
+
readonly type: "string";
|
|
53
|
+
readonly required: true;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
}];
|
|
57
|
+
readonly nullable: true;
|
|
58
|
+
};
|
|
59
|
+
}, undefined>;
|
|
60
|
+
export declare const BuilderEntry: Schema.Utils.FromObject<{
|
|
31
61
|
readonly maxTimeMs: {
|
|
32
62
|
readonly type: "number";
|
|
33
63
|
readonly default: 60000;
|
|
@@ -42,15 +72,47 @@ export declare const builder: Schema.Utils.FromObject<{
|
|
|
42
72
|
};
|
|
43
73
|
}];
|
|
44
74
|
};
|
|
45
|
-
readonly
|
|
75
|
+
readonly extract: {
|
|
46
76
|
readonly union: [{
|
|
47
77
|
readonly type: "string";
|
|
48
78
|
}, {
|
|
49
|
-
readonly type: "
|
|
79
|
+
readonly type: "array";
|
|
80
|
+
readonly items: {
|
|
81
|
+
type: "object";
|
|
82
|
+
properties: {
|
|
83
|
+
readonly from: {
|
|
84
|
+
readonly type: "string";
|
|
85
|
+
readonly required: true;
|
|
86
|
+
};
|
|
87
|
+
readonly to: {
|
|
88
|
+
readonly type: "string";
|
|
89
|
+
readonly required: true;
|
|
90
|
+
};
|
|
91
|
+
readonly replacer: {
|
|
92
|
+
readonly union: [{
|
|
93
|
+
readonly type: "string";
|
|
94
|
+
}, {
|
|
95
|
+
readonly type: "object";
|
|
96
|
+
readonly properties: {
|
|
97
|
+
readonly search: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
readonly required: true;
|
|
100
|
+
};
|
|
101
|
+
readonly replace: {
|
|
102
|
+
readonly type: "string";
|
|
103
|
+
readonly required: true;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
}];
|
|
107
|
+
readonly nullable: true;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
allowAdditionalProperties: undefined;
|
|
111
|
+
};
|
|
50
112
|
}];
|
|
51
113
|
};
|
|
52
114
|
}, undefined>;
|
|
53
|
-
export declare const
|
|
115
|
+
export declare const ResolverEntry: Schema.Utils.FromObject<{
|
|
54
116
|
readonly alias: {
|
|
55
117
|
readonly type: "string";
|
|
56
118
|
readonly required: true;
|
|
@@ -73,7 +135,7 @@ export declare const pathResolverEntry: Schema.Utils.FromObject<{
|
|
|
73
135
|
readonly required: true;
|
|
74
136
|
};
|
|
75
137
|
}, undefined>;
|
|
76
|
-
export declare const
|
|
138
|
+
export declare const GitDependency: Schema.Utils.FromObject<{
|
|
77
139
|
readonly name: {
|
|
78
140
|
readonly type: "string";
|
|
79
141
|
readonly required: true;
|
|
@@ -84,6 +146,7 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
84
146
|
};
|
|
85
147
|
readonly tag: {
|
|
86
148
|
readonly type: "string";
|
|
149
|
+
readonly default: "main";
|
|
87
150
|
};
|
|
88
151
|
readonly builder: {
|
|
89
152
|
readonly type: "array";
|
|
@@ -105,11 +168,43 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
105
168
|
};
|
|
106
169
|
}];
|
|
107
170
|
};
|
|
108
|
-
readonly
|
|
171
|
+
readonly extract: {
|
|
109
172
|
readonly union: [{
|
|
110
173
|
readonly type: "string";
|
|
111
174
|
}, {
|
|
112
|
-
readonly type: "
|
|
175
|
+
readonly type: "array";
|
|
176
|
+
readonly items: {
|
|
177
|
+
type: "object";
|
|
178
|
+
properties: {
|
|
179
|
+
readonly from: {
|
|
180
|
+
readonly type: "string";
|
|
181
|
+
readonly required: true;
|
|
182
|
+
};
|
|
183
|
+
readonly to: {
|
|
184
|
+
readonly type: "string";
|
|
185
|
+
readonly required: true;
|
|
186
|
+
};
|
|
187
|
+
readonly replacer: {
|
|
188
|
+
readonly union: [{
|
|
189
|
+
readonly type: "string";
|
|
190
|
+
}, {
|
|
191
|
+
readonly type: "object";
|
|
192
|
+
readonly properties: {
|
|
193
|
+
readonly search: {
|
|
194
|
+
readonly type: "string";
|
|
195
|
+
readonly required: true;
|
|
196
|
+
};
|
|
197
|
+
readonly replace: {
|
|
198
|
+
readonly type: "string";
|
|
199
|
+
readonly required: true;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
}];
|
|
203
|
+
readonly nullable: true;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
allowAdditionalProperties: undefined;
|
|
207
|
+
};
|
|
113
208
|
}];
|
|
114
209
|
};
|
|
115
210
|
};
|
|
@@ -149,11 +244,78 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
149
244
|
};
|
|
150
245
|
};
|
|
151
246
|
}, undefined>;
|
|
152
|
-
export declare const
|
|
247
|
+
export declare const NpmDependency: Schema.Utils.FromObject<{
|
|
153
248
|
readonly name: {
|
|
154
249
|
readonly type: "string";
|
|
155
250
|
readonly required: true;
|
|
156
251
|
};
|
|
252
|
+
readonly version: {
|
|
253
|
+
readonly type: "string";
|
|
254
|
+
readonly required: true;
|
|
255
|
+
};
|
|
256
|
+
readonly builder: {
|
|
257
|
+
readonly type: "array";
|
|
258
|
+
readonly default: [];
|
|
259
|
+
readonly items: {
|
|
260
|
+
type: "object";
|
|
261
|
+
properties: {
|
|
262
|
+
readonly maxTimeMs: {
|
|
263
|
+
readonly type: "number";
|
|
264
|
+
readonly default: 60000;
|
|
265
|
+
};
|
|
266
|
+
readonly run: {
|
|
267
|
+
readonly union: [{
|
|
268
|
+
readonly type: "string";
|
|
269
|
+
}, {
|
|
270
|
+
readonly type: "array";
|
|
271
|
+
readonly items: {
|
|
272
|
+
readonly type: "string";
|
|
273
|
+
};
|
|
274
|
+
}];
|
|
275
|
+
};
|
|
276
|
+
readonly extract: {
|
|
277
|
+
readonly union: [{
|
|
278
|
+
readonly type: "string";
|
|
279
|
+
}, {
|
|
280
|
+
readonly type: "array";
|
|
281
|
+
readonly items: {
|
|
282
|
+
type: "object";
|
|
283
|
+
properties: {
|
|
284
|
+
readonly from: {
|
|
285
|
+
readonly type: "string";
|
|
286
|
+
readonly required: true;
|
|
287
|
+
};
|
|
288
|
+
readonly to: {
|
|
289
|
+
readonly type: "string";
|
|
290
|
+
readonly required: true;
|
|
291
|
+
};
|
|
292
|
+
readonly replacer: {
|
|
293
|
+
readonly union: [{
|
|
294
|
+
readonly type: "string";
|
|
295
|
+
}, {
|
|
296
|
+
readonly type: "object";
|
|
297
|
+
readonly properties: {
|
|
298
|
+
readonly search: {
|
|
299
|
+
readonly type: "string";
|
|
300
|
+
readonly required: true;
|
|
301
|
+
};
|
|
302
|
+
readonly replace: {
|
|
303
|
+
readonly type: "string";
|
|
304
|
+
readonly required: true;
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
}];
|
|
308
|
+
readonly nullable: true;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
allowAdditionalProperties: undefined;
|
|
312
|
+
};
|
|
313
|
+
}];
|
|
314
|
+
};
|
|
315
|
+
};
|
|
316
|
+
allowAdditionalProperties: undefined;
|
|
317
|
+
};
|
|
318
|
+
};
|
|
157
319
|
readonly resolver: {
|
|
158
320
|
readonly type: "array";
|
|
159
321
|
readonly nullable: true;
|
|
@@ -187,14 +349,18 @@ export declare const npmDependencySchema: Schema.Utils.FromObject<{
|
|
|
187
349
|
};
|
|
188
350
|
};
|
|
189
351
|
}, undefined>;
|
|
190
|
-
export declare const
|
|
352
|
+
export declare const Config: Schema.Utils.FromObject<{
|
|
353
|
+
readonly $schema: {
|
|
354
|
+
readonly type: "string";
|
|
355
|
+
readonly default: ".depflow/schema.json";
|
|
356
|
+
};
|
|
191
357
|
readonly flowFolder: {
|
|
192
358
|
readonly type: "string";
|
|
193
359
|
readonly default: ".depflow";
|
|
194
360
|
};
|
|
195
361
|
readonly outDir: {
|
|
196
362
|
readonly type: "string";
|
|
197
|
-
readonly default: "
|
|
363
|
+
readonly default: "dist";
|
|
198
364
|
};
|
|
199
365
|
readonly tsconfig: {
|
|
200
366
|
readonly type: "string";
|
|
@@ -222,6 +388,7 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
222
388
|
};
|
|
223
389
|
readonly tag: {
|
|
224
390
|
readonly type: "string";
|
|
391
|
+
readonly default: "main";
|
|
225
392
|
};
|
|
226
393
|
readonly builder: {
|
|
227
394
|
readonly type: "array";
|
|
@@ -243,11 +410,43 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
243
410
|
};
|
|
244
411
|
}];
|
|
245
412
|
};
|
|
246
|
-
readonly
|
|
413
|
+
readonly extract: {
|
|
247
414
|
readonly union: [{
|
|
248
415
|
readonly type: "string";
|
|
249
416
|
}, {
|
|
250
|
-
readonly type: "
|
|
417
|
+
readonly type: "array";
|
|
418
|
+
readonly items: {
|
|
419
|
+
type: "object";
|
|
420
|
+
properties: {
|
|
421
|
+
readonly from: {
|
|
422
|
+
readonly type: "string";
|
|
423
|
+
readonly required: true;
|
|
424
|
+
};
|
|
425
|
+
readonly to: {
|
|
426
|
+
readonly type: "string";
|
|
427
|
+
readonly required: true;
|
|
428
|
+
};
|
|
429
|
+
readonly replacer: {
|
|
430
|
+
readonly union: [{
|
|
431
|
+
readonly type: "string";
|
|
432
|
+
}, {
|
|
433
|
+
readonly type: "object";
|
|
434
|
+
readonly properties: {
|
|
435
|
+
readonly search: {
|
|
436
|
+
readonly type: "string";
|
|
437
|
+
readonly required: true;
|
|
438
|
+
};
|
|
439
|
+
readonly replace: {
|
|
440
|
+
readonly type: "string";
|
|
441
|
+
readonly required: true;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
}];
|
|
445
|
+
readonly nullable: true;
|
|
446
|
+
};
|
|
447
|
+
};
|
|
448
|
+
allowAdditionalProperties: undefined;
|
|
449
|
+
};
|
|
251
450
|
}];
|
|
252
451
|
};
|
|
253
452
|
};
|
|
@@ -300,6 +499,73 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
300
499
|
readonly type: "string";
|
|
301
500
|
readonly required: true;
|
|
302
501
|
};
|
|
502
|
+
readonly version: {
|
|
503
|
+
readonly type: "string";
|
|
504
|
+
readonly required: true;
|
|
505
|
+
};
|
|
506
|
+
readonly builder: {
|
|
507
|
+
readonly type: "array";
|
|
508
|
+
readonly default: [];
|
|
509
|
+
readonly items: {
|
|
510
|
+
type: "object";
|
|
511
|
+
properties: {
|
|
512
|
+
readonly maxTimeMs: {
|
|
513
|
+
readonly type: "number";
|
|
514
|
+
readonly default: 60000;
|
|
515
|
+
};
|
|
516
|
+
readonly run: {
|
|
517
|
+
readonly union: [{
|
|
518
|
+
readonly type: "string";
|
|
519
|
+
}, {
|
|
520
|
+
readonly type: "array";
|
|
521
|
+
readonly items: {
|
|
522
|
+
readonly type: "string";
|
|
523
|
+
};
|
|
524
|
+
}];
|
|
525
|
+
};
|
|
526
|
+
readonly extract: {
|
|
527
|
+
readonly union: [{
|
|
528
|
+
readonly type: "string";
|
|
529
|
+
}, {
|
|
530
|
+
readonly type: "array";
|
|
531
|
+
readonly items: {
|
|
532
|
+
type: "object";
|
|
533
|
+
properties: {
|
|
534
|
+
readonly from: {
|
|
535
|
+
readonly type: "string";
|
|
536
|
+
readonly required: true;
|
|
537
|
+
};
|
|
538
|
+
readonly to: {
|
|
539
|
+
readonly type: "string";
|
|
540
|
+
readonly required: true;
|
|
541
|
+
};
|
|
542
|
+
readonly replacer: {
|
|
543
|
+
readonly union: [{
|
|
544
|
+
readonly type: "string";
|
|
545
|
+
}, {
|
|
546
|
+
readonly type: "object";
|
|
547
|
+
readonly properties: {
|
|
548
|
+
readonly search: {
|
|
549
|
+
readonly type: "string";
|
|
550
|
+
readonly required: true;
|
|
551
|
+
};
|
|
552
|
+
readonly replace: {
|
|
553
|
+
readonly type: "string";
|
|
554
|
+
readonly required: true;
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
}];
|
|
558
|
+
readonly nullable: true;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
allowAdditionalProperties: undefined;
|
|
562
|
+
};
|
|
563
|
+
}];
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
allowAdditionalProperties: undefined;
|
|
567
|
+
};
|
|
568
|
+
};
|
|
303
569
|
readonly resolver: {
|
|
304
570
|
readonly type: "array";
|
|
305
571
|
readonly nullable: true;
|
|
@@ -337,35 +603,19 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
337
603
|
};
|
|
338
604
|
};
|
|
339
605
|
}, undefined>;
|
|
340
|
-
export declare const
|
|
341
|
-
|
|
342
|
-
readonly
|
|
343
|
-
readonly type: "
|
|
344
|
-
readonly
|
|
345
|
-
readonly baseUrl: {
|
|
346
|
-
readonly type: "string";
|
|
347
|
-
};
|
|
348
|
-
readonly rootDir: {
|
|
349
|
-
readonly type: "string";
|
|
350
|
-
};
|
|
351
|
-
readonly outDir: {
|
|
352
|
-
readonly type: "string";
|
|
353
|
-
};
|
|
354
|
-
readonly paths: {
|
|
355
|
-
readonly type: "object";
|
|
356
|
-
};
|
|
357
|
-
};
|
|
358
|
-
readonly allowAdditionalProperties: true;
|
|
606
|
+
export declare const Schemas: {
|
|
607
|
+
Config: Schema.Utils.FromObject<{
|
|
608
|
+
readonly $schema: {
|
|
609
|
+
readonly type: "string";
|
|
610
|
+
readonly default: ".depflow/schema.json";
|
|
359
611
|
};
|
|
360
|
-
}, true>;
|
|
361
|
-
config: Schema.Utils.FromObject<{
|
|
362
612
|
readonly flowFolder: {
|
|
363
613
|
readonly type: "string";
|
|
364
614
|
readonly default: ".depflow";
|
|
365
615
|
};
|
|
366
616
|
readonly outDir: {
|
|
367
617
|
readonly type: "string";
|
|
368
|
-
readonly default: "
|
|
618
|
+
readonly default: "dist";
|
|
369
619
|
};
|
|
370
620
|
readonly tsconfig: {
|
|
371
621
|
readonly type: "string";
|
|
@@ -393,6 +643,7 @@ export declare const schemas: {
|
|
|
393
643
|
};
|
|
394
644
|
readonly tag: {
|
|
395
645
|
readonly type: "string";
|
|
646
|
+
readonly default: "main";
|
|
396
647
|
};
|
|
397
648
|
readonly builder: {
|
|
398
649
|
readonly type: "array";
|
|
@@ -414,11 +665,43 @@ export declare const schemas: {
|
|
|
414
665
|
};
|
|
415
666
|
}];
|
|
416
667
|
};
|
|
417
|
-
readonly
|
|
668
|
+
readonly extract: {
|
|
418
669
|
readonly union: [{
|
|
419
670
|
readonly type: "string";
|
|
420
671
|
}, {
|
|
421
|
-
readonly type: "
|
|
672
|
+
readonly type: "array";
|
|
673
|
+
readonly items: {
|
|
674
|
+
type: "object";
|
|
675
|
+
properties: {
|
|
676
|
+
readonly from: {
|
|
677
|
+
readonly type: "string";
|
|
678
|
+
readonly required: true;
|
|
679
|
+
};
|
|
680
|
+
readonly to: {
|
|
681
|
+
readonly type: "string";
|
|
682
|
+
readonly required: true;
|
|
683
|
+
};
|
|
684
|
+
readonly replacer: {
|
|
685
|
+
readonly union: [{
|
|
686
|
+
readonly type: "string";
|
|
687
|
+
}, {
|
|
688
|
+
readonly type: "object";
|
|
689
|
+
readonly properties: {
|
|
690
|
+
readonly search: {
|
|
691
|
+
readonly type: "string";
|
|
692
|
+
readonly required: true;
|
|
693
|
+
};
|
|
694
|
+
readonly replace: {
|
|
695
|
+
readonly type: "string";
|
|
696
|
+
readonly required: true;
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
}];
|
|
700
|
+
readonly nullable: true;
|
|
701
|
+
};
|
|
702
|
+
};
|
|
703
|
+
allowAdditionalProperties: undefined;
|
|
704
|
+
};
|
|
422
705
|
}];
|
|
423
706
|
};
|
|
424
707
|
};
|
|
@@ -471,6 +754,73 @@ export declare const schemas: {
|
|
|
471
754
|
readonly type: "string";
|
|
472
755
|
readonly required: true;
|
|
473
756
|
};
|
|
757
|
+
readonly version: {
|
|
758
|
+
readonly type: "string";
|
|
759
|
+
readonly required: true;
|
|
760
|
+
};
|
|
761
|
+
readonly builder: {
|
|
762
|
+
readonly type: "array";
|
|
763
|
+
readonly default: [];
|
|
764
|
+
readonly items: {
|
|
765
|
+
type: "object";
|
|
766
|
+
properties: {
|
|
767
|
+
readonly maxTimeMs: {
|
|
768
|
+
readonly type: "number";
|
|
769
|
+
readonly default: 60000;
|
|
770
|
+
};
|
|
771
|
+
readonly run: {
|
|
772
|
+
readonly union: [{
|
|
773
|
+
readonly type: "string";
|
|
774
|
+
}, {
|
|
775
|
+
readonly type: "array";
|
|
776
|
+
readonly items: {
|
|
777
|
+
readonly type: "string";
|
|
778
|
+
};
|
|
779
|
+
}];
|
|
780
|
+
};
|
|
781
|
+
readonly extract: {
|
|
782
|
+
readonly union: [{
|
|
783
|
+
readonly type: "string";
|
|
784
|
+
}, {
|
|
785
|
+
readonly type: "array";
|
|
786
|
+
readonly items: {
|
|
787
|
+
type: "object";
|
|
788
|
+
properties: {
|
|
789
|
+
readonly from: {
|
|
790
|
+
readonly type: "string";
|
|
791
|
+
readonly required: true;
|
|
792
|
+
};
|
|
793
|
+
readonly to: {
|
|
794
|
+
readonly type: "string";
|
|
795
|
+
readonly required: true;
|
|
796
|
+
};
|
|
797
|
+
readonly replacer: {
|
|
798
|
+
readonly union: [{
|
|
799
|
+
readonly type: "string";
|
|
800
|
+
}, {
|
|
801
|
+
readonly type: "object";
|
|
802
|
+
readonly properties: {
|
|
803
|
+
readonly search: {
|
|
804
|
+
readonly type: "string";
|
|
805
|
+
readonly required: true;
|
|
806
|
+
};
|
|
807
|
+
readonly replace: {
|
|
808
|
+
readonly type: "string";
|
|
809
|
+
readonly required: true;
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
}];
|
|
813
|
+
readonly nullable: true;
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
allowAdditionalProperties: undefined;
|
|
817
|
+
};
|
|
818
|
+
}];
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
allowAdditionalProperties: undefined;
|
|
822
|
+
};
|
|
823
|
+
};
|
|
474
824
|
readonly resolver: {
|
|
475
825
|
readonly type: "array";
|
|
476
826
|
readonly nullable: true;
|
|
@@ -508,7 +858,37 @@ export declare const schemas: {
|
|
|
508
858
|
};
|
|
509
859
|
};
|
|
510
860
|
}, undefined>;
|
|
511
|
-
|
|
861
|
+
TsConfig: Schema.Utils.FromObject<{
|
|
862
|
+
readonly compilerOptions: {
|
|
863
|
+
readonly type: "object";
|
|
864
|
+
readonly properties: {
|
|
865
|
+
readonly baseUrl: {
|
|
866
|
+
readonly type: "string";
|
|
867
|
+
};
|
|
868
|
+
readonly rootDir: {
|
|
869
|
+
readonly type: "string";
|
|
870
|
+
};
|
|
871
|
+
readonly outDir: {
|
|
872
|
+
readonly type: "string";
|
|
873
|
+
};
|
|
874
|
+
readonly paths: {
|
|
875
|
+
readonly type: "object";
|
|
876
|
+
};
|
|
877
|
+
};
|
|
878
|
+
readonly allowAdditionalProperties: true;
|
|
879
|
+
};
|
|
880
|
+
}, true>;
|
|
881
|
+
ImportMap: Schema.Utils.FromObject<{
|
|
882
|
+
readonly imports: {
|
|
883
|
+
readonly type: "object";
|
|
884
|
+
readonly default: {};
|
|
885
|
+
};
|
|
886
|
+
readonly scopes: {
|
|
887
|
+
readonly type: "object";
|
|
888
|
+
readonly default: {};
|
|
889
|
+
};
|
|
890
|
+
}, undefined>;
|
|
891
|
+
BuilderEntry: Schema.Utils.FromObject<{
|
|
512
892
|
readonly maxTimeMs: {
|
|
513
893
|
readonly type: "number";
|
|
514
894
|
readonly default: 60000;
|
|
@@ -523,15 +903,47 @@ export declare const schemas: {
|
|
|
523
903
|
};
|
|
524
904
|
}];
|
|
525
905
|
};
|
|
526
|
-
readonly
|
|
906
|
+
readonly extract: {
|
|
527
907
|
readonly union: [{
|
|
528
908
|
readonly type: "string";
|
|
529
909
|
}, {
|
|
530
|
-
readonly type: "
|
|
910
|
+
readonly type: "array";
|
|
911
|
+
readonly items: {
|
|
912
|
+
type: "object";
|
|
913
|
+
properties: {
|
|
914
|
+
readonly from: {
|
|
915
|
+
readonly type: "string";
|
|
916
|
+
readonly required: true;
|
|
917
|
+
};
|
|
918
|
+
readonly to: {
|
|
919
|
+
readonly type: "string";
|
|
920
|
+
readonly required: true;
|
|
921
|
+
};
|
|
922
|
+
readonly replacer: {
|
|
923
|
+
readonly union: [{
|
|
924
|
+
readonly type: "string";
|
|
925
|
+
}, {
|
|
926
|
+
readonly type: "object";
|
|
927
|
+
readonly properties: {
|
|
928
|
+
readonly search: {
|
|
929
|
+
readonly type: "string";
|
|
930
|
+
readonly required: true;
|
|
931
|
+
};
|
|
932
|
+
readonly replace: {
|
|
933
|
+
readonly type: "string";
|
|
934
|
+
readonly required: true;
|
|
935
|
+
};
|
|
936
|
+
};
|
|
937
|
+
}];
|
|
938
|
+
readonly nullable: true;
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
allowAdditionalProperties: undefined;
|
|
942
|
+
};
|
|
531
943
|
}];
|
|
532
944
|
};
|
|
533
945
|
}, undefined>;
|
|
534
|
-
|
|
946
|
+
ResolverEntry: Schema.Utils.FromObject<{
|
|
535
947
|
readonly alias: {
|
|
536
948
|
readonly type: "string";
|
|
537
949
|
readonly required: true;
|
|
@@ -554,7 +966,7 @@ export declare const schemas: {
|
|
|
554
966
|
readonly required: true;
|
|
555
967
|
};
|
|
556
968
|
}, undefined>;
|
|
557
|
-
|
|
969
|
+
GitDependency: Schema.Utils.FromObject<{
|
|
558
970
|
readonly name: {
|
|
559
971
|
readonly type: "string";
|
|
560
972
|
readonly required: true;
|
|
@@ -565,6 +977,7 @@ export declare const schemas: {
|
|
|
565
977
|
};
|
|
566
978
|
readonly tag: {
|
|
567
979
|
readonly type: "string";
|
|
980
|
+
readonly default: "main";
|
|
568
981
|
};
|
|
569
982
|
readonly builder: {
|
|
570
983
|
readonly type: "array";
|
|
@@ -586,11 +999,148 @@ export declare const schemas: {
|
|
|
586
999
|
};
|
|
587
1000
|
}];
|
|
588
1001
|
};
|
|
589
|
-
readonly
|
|
1002
|
+
readonly extract: {
|
|
1003
|
+
readonly union: [{
|
|
1004
|
+
readonly type: "string";
|
|
1005
|
+
}, {
|
|
1006
|
+
readonly type: "array";
|
|
1007
|
+
readonly items: {
|
|
1008
|
+
type: "object";
|
|
1009
|
+
properties: {
|
|
1010
|
+
readonly from: {
|
|
1011
|
+
readonly type: "string";
|
|
1012
|
+
readonly required: true;
|
|
1013
|
+
};
|
|
1014
|
+
readonly to: {
|
|
1015
|
+
readonly type: "string";
|
|
1016
|
+
readonly required: true;
|
|
1017
|
+
};
|
|
1018
|
+
readonly replacer: {
|
|
1019
|
+
readonly union: [{
|
|
1020
|
+
readonly type: "string";
|
|
1021
|
+
}, {
|
|
1022
|
+
readonly type: "object";
|
|
1023
|
+
readonly properties: {
|
|
1024
|
+
readonly search: {
|
|
1025
|
+
readonly type: "string";
|
|
1026
|
+
readonly required: true;
|
|
1027
|
+
};
|
|
1028
|
+
readonly replace: {
|
|
1029
|
+
readonly type: "string";
|
|
1030
|
+
readonly required: true;
|
|
1031
|
+
};
|
|
1032
|
+
};
|
|
1033
|
+
}];
|
|
1034
|
+
readonly nullable: true;
|
|
1035
|
+
};
|
|
1036
|
+
};
|
|
1037
|
+
allowAdditionalProperties: undefined;
|
|
1038
|
+
};
|
|
1039
|
+
}];
|
|
1040
|
+
};
|
|
1041
|
+
};
|
|
1042
|
+
allowAdditionalProperties: undefined;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
readonly resolver: {
|
|
1046
|
+
readonly type: "array";
|
|
1047
|
+
readonly nullable: true;
|
|
1048
|
+
readonly default: [];
|
|
1049
|
+
readonly items: {
|
|
1050
|
+
type: "object";
|
|
1051
|
+
properties: {
|
|
1052
|
+
readonly alias: {
|
|
1053
|
+
readonly type: "string";
|
|
1054
|
+
readonly required: true;
|
|
1055
|
+
};
|
|
1056
|
+
readonly target: {
|
|
590
1057
|
readonly union: [{
|
|
591
1058
|
readonly type: "string";
|
|
592
1059
|
}, {
|
|
593
1060
|
readonly type: "object";
|
|
1061
|
+
readonly properties: {
|
|
1062
|
+
readonly local: {
|
|
1063
|
+
readonly type: "string";
|
|
1064
|
+
readonly required: true;
|
|
1065
|
+
};
|
|
1066
|
+
readonly cdn: {
|
|
1067
|
+
readonly type: "string";
|
|
1068
|
+
};
|
|
1069
|
+
};
|
|
1070
|
+
}];
|
|
1071
|
+
readonly required: true;
|
|
1072
|
+
};
|
|
1073
|
+
};
|
|
1074
|
+
allowAdditionalProperties: undefined;
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
}, undefined>;
|
|
1078
|
+
NpmDependency: Schema.Utils.FromObject<{
|
|
1079
|
+
readonly name: {
|
|
1080
|
+
readonly type: "string";
|
|
1081
|
+
readonly required: true;
|
|
1082
|
+
};
|
|
1083
|
+
readonly version: {
|
|
1084
|
+
readonly type: "string";
|
|
1085
|
+
readonly required: true;
|
|
1086
|
+
};
|
|
1087
|
+
readonly builder: {
|
|
1088
|
+
readonly type: "array";
|
|
1089
|
+
readonly default: [];
|
|
1090
|
+
readonly items: {
|
|
1091
|
+
type: "object";
|
|
1092
|
+
properties: {
|
|
1093
|
+
readonly maxTimeMs: {
|
|
1094
|
+
readonly type: "number";
|
|
1095
|
+
readonly default: 60000;
|
|
1096
|
+
};
|
|
1097
|
+
readonly run: {
|
|
1098
|
+
readonly union: [{
|
|
1099
|
+
readonly type: "string";
|
|
1100
|
+
}, {
|
|
1101
|
+
readonly type: "array";
|
|
1102
|
+
readonly items: {
|
|
1103
|
+
readonly type: "string";
|
|
1104
|
+
};
|
|
1105
|
+
}];
|
|
1106
|
+
};
|
|
1107
|
+
readonly extract: {
|
|
1108
|
+
readonly union: [{
|
|
1109
|
+
readonly type: "string";
|
|
1110
|
+
}, {
|
|
1111
|
+
readonly type: "array";
|
|
1112
|
+
readonly items: {
|
|
1113
|
+
type: "object";
|
|
1114
|
+
properties: {
|
|
1115
|
+
readonly from: {
|
|
1116
|
+
readonly type: "string";
|
|
1117
|
+
readonly required: true;
|
|
1118
|
+
};
|
|
1119
|
+
readonly to: {
|
|
1120
|
+
readonly type: "string";
|
|
1121
|
+
readonly required: true;
|
|
1122
|
+
};
|
|
1123
|
+
readonly replacer: {
|
|
1124
|
+
readonly union: [{
|
|
1125
|
+
readonly type: "string";
|
|
1126
|
+
}, {
|
|
1127
|
+
readonly type: "object";
|
|
1128
|
+
readonly properties: {
|
|
1129
|
+
readonly search: {
|
|
1130
|
+
readonly type: "string";
|
|
1131
|
+
readonly required: true;
|
|
1132
|
+
};
|
|
1133
|
+
readonly replace: {
|
|
1134
|
+
readonly type: "string";
|
|
1135
|
+
readonly required: true;
|
|
1136
|
+
};
|
|
1137
|
+
};
|
|
1138
|
+
}];
|
|
1139
|
+
readonly nullable: true;
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
allowAdditionalProperties: undefined;
|
|
1143
|
+
};
|
|
594
1144
|
}];
|
|
595
1145
|
};
|
|
596
1146
|
};
|
|
@@ -631,11 +1181,14 @@ export declare const schemas: {
|
|
|
631
1181
|
};
|
|
632
1182
|
}, undefined>;
|
|
633
1183
|
};
|
|
634
|
-
export declare namespace
|
|
635
|
-
type
|
|
636
|
-
type
|
|
637
|
-
type
|
|
638
|
-
type
|
|
639
|
-
type
|
|
1184
|
+
export declare namespace Schemas {
|
|
1185
|
+
type Config = typeof Config;
|
|
1186
|
+
type BuilderEntry = typeof BuilderEntry;
|
|
1187
|
+
type ResolverEntry = typeof ResolverEntry;
|
|
1188
|
+
type GitDependency = typeof GitDependency;
|
|
1189
|
+
type NpmDependency = typeof NpmDependency;
|
|
1190
|
+
type TsConfig = typeof TsConfig;
|
|
1191
|
+
type ImportMap = typeof ImportMap;
|
|
1192
|
+
type ExtractorEntry = typeof ExtractorEntry;
|
|
640
1193
|
}
|
|
641
|
-
export default
|
|
1194
|
+
export default Schemas;
|