depflow 2.0.2 → 3.0.0-dev.2
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 +17 -7
- package/build/config/Tsconfig.js.map +1 -1
- package/build/config/schemas.d.ts +634 -51
- package/build/config/schemas.js +37 -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 +3 -2
- package/build/support/PathResolver/AliasCompiler.js +9 -3
- package/build/support/PathResolver/AliasCompiler.js.map +1 -1
- 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;
|
|
@@ -65,6 +127,9 @@ export declare const pathResolverEntry: Schema.Utils.FromObject<{
|
|
|
65
127
|
readonly type: "string";
|
|
66
128
|
readonly required: true;
|
|
67
129
|
};
|
|
130
|
+
readonly type: {
|
|
131
|
+
readonly type: "string";
|
|
132
|
+
};
|
|
68
133
|
readonly cdn: {
|
|
69
134
|
readonly type: "string";
|
|
70
135
|
};
|
|
@@ -73,7 +138,7 @@ export declare const pathResolverEntry: Schema.Utils.FromObject<{
|
|
|
73
138
|
readonly required: true;
|
|
74
139
|
};
|
|
75
140
|
}, undefined>;
|
|
76
|
-
export declare const
|
|
141
|
+
export declare const GitDependency: Schema.Utils.FromObject<{
|
|
77
142
|
readonly name: {
|
|
78
143
|
readonly type: "string";
|
|
79
144
|
readonly required: true;
|
|
@@ -84,6 +149,7 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
84
149
|
};
|
|
85
150
|
readonly tag: {
|
|
86
151
|
readonly type: "string";
|
|
152
|
+
readonly default: "main";
|
|
87
153
|
};
|
|
88
154
|
readonly builder: {
|
|
89
155
|
readonly type: "array";
|
|
@@ -105,11 +171,43 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
105
171
|
};
|
|
106
172
|
}];
|
|
107
173
|
};
|
|
108
|
-
readonly
|
|
174
|
+
readonly extract: {
|
|
109
175
|
readonly union: [{
|
|
110
176
|
readonly type: "string";
|
|
111
177
|
}, {
|
|
112
|
-
readonly type: "
|
|
178
|
+
readonly type: "array";
|
|
179
|
+
readonly items: {
|
|
180
|
+
type: "object";
|
|
181
|
+
properties: {
|
|
182
|
+
readonly from: {
|
|
183
|
+
readonly type: "string";
|
|
184
|
+
readonly required: true;
|
|
185
|
+
};
|
|
186
|
+
readonly to: {
|
|
187
|
+
readonly type: "string";
|
|
188
|
+
readonly required: true;
|
|
189
|
+
};
|
|
190
|
+
readonly replacer: {
|
|
191
|
+
readonly union: [{
|
|
192
|
+
readonly type: "string";
|
|
193
|
+
}, {
|
|
194
|
+
readonly type: "object";
|
|
195
|
+
readonly properties: {
|
|
196
|
+
readonly search: {
|
|
197
|
+
readonly type: "string";
|
|
198
|
+
readonly required: true;
|
|
199
|
+
};
|
|
200
|
+
readonly replace: {
|
|
201
|
+
readonly type: "string";
|
|
202
|
+
readonly required: true;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
}];
|
|
206
|
+
readonly nullable: true;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
allowAdditionalProperties: undefined;
|
|
210
|
+
};
|
|
113
211
|
}];
|
|
114
212
|
};
|
|
115
213
|
};
|
|
@@ -137,6 +235,9 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
137
235
|
readonly type: "string";
|
|
138
236
|
readonly required: true;
|
|
139
237
|
};
|
|
238
|
+
readonly type: {
|
|
239
|
+
readonly type: "string";
|
|
240
|
+
};
|
|
140
241
|
readonly cdn: {
|
|
141
242
|
readonly type: "string";
|
|
142
243
|
};
|
|
@@ -149,11 +250,78 @@ export declare const dependency: Schema.Utils.FromObject<{
|
|
|
149
250
|
};
|
|
150
251
|
};
|
|
151
252
|
}, undefined>;
|
|
152
|
-
export declare const
|
|
253
|
+
export declare const NpmDependency: Schema.Utils.FromObject<{
|
|
153
254
|
readonly name: {
|
|
154
255
|
readonly type: "string";
|
|
155
256
|
readonly required: true;
|
|
156
257
|
};
|
|
258
|
+
readonly version: {
|
|
259
|
+
readonly type: "string";
|
|
260
|
+
readonly required: true;
|
|
261
|
+
};
|
|
262
|
+
readonly builder: {
|
|
263
|
+
readonly type: "array";
|
|
264
|
+
readonly default: [];
|
|
265
|
+
readonly items: {
|
|
266
|
+
type: "object";
|
|
267
|
+
properties: {
|
|
268
|
+
readonly maxTimeMs: {
|
|
269
|
+
readonly type: "number";
|
|
270
|
+
readonly default: 60000;
|
|
271
|
+
};
|
|
272
|
+
readonly run: {
|
|
273
|
+
readonly union: [{
|
|
274
|
+
readonly type: "string";
|
|
275
|
+
}, {
|
|
276
|
+
readonly type: "array";
|
|
277
|
+
readonly items: {
|
|
278
|
+
readonly type: "string";
|
|
279
|
+
};
|
|
280
|
+
}];
|
|
281
|
+
};
|
|
282
|
+
readonly extract: {
|
|
283
|
+
readonly union: [{
|
|
284
|
+
readonly type: "string";
|
|
285
|
+
}, {
|
|
286
|
+
readonly type: "array";
|
|
287
|
+
readonly items: {
|
|
288
|
+
type: "object";
|
|
289
|
+
properties: {
|
|
290
|
+
readonly from: {
|
|
291
|
+
readonly type: "string";
|
|
292
|
+
readonly required: true;
|
|
293
|
+
};
|
|
294
|
+
readonly to: {
|
|
295
|
+
readonly type: "string";
|
|
296
|
+
readonly required: true;
|
|
297
|
+
};
|
|
298
|
+
readonly replacer: {
|
|
299
|
+
readonly union: [{
|
|
300
|
+
readonly type: "string";
|
|
301
|
+
}, {
|
|
302
|
+
readonly type: "object";
|
|
303
|
+
readonly properties: {
|
|
304
|
+
readonly search: {
|
|
305
|
+
readonly type: "string";
|
|
306
|
+
readonly required: true;
|
|
307
|
+
};
|
|
308
|
+
readonly replace: {
|
|
309
|
+
readonly type: "string";
|
|
310
|
+
readonly required: true;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
}];
|
|
314
|
+
readonly nullable: true;
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
allowAdditionalProperties: undefined;
|
|
318
|
+
};
|
|
319
|
+
}];
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
allowAdditionalProperties: undefined;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
157
325
|
readonly resolver: {
|
|
158
326
|
readonly type: "array";
|
|
159
327
|
readonly nullable: true;
|
|
@@ -175,6 +343,9 @@ export declare const npmDependencySchema: Schema.Utils.FromObject<{
|
|
|
175
343
|
readonly type: "string";
|
|
176
344
|
readonly required: true;
|
|
177
345
|
};
|
|
346
|
+
readonly type: {
|
|
347
|
+
readonly type: "string";
|
|
348
|
+
};
|
|
178
349
|
readonly cdn: {
|
|
179
350
|
readonly type: "string";
|
|
180
351
|
};
|
|
@@ -187,14 +358,18 @@ export declare const npmDependencySchema: Schema.Utils.FromObject<{
|
|
|
187
358
|
};
|
|
188
359
|
};
|
|
189
360
|
}, undefined>;
|
|
190
|
-
export declare const
|
|
361
|
+
export declare const Config: Schema.Utils.FromObject<{
|
|
362
|
+
readonly $schema: {
|
|
363
|
+
readonly type: "string";
|
|
364
|
+
readonly default: ".depflow/schema.json";
|
|
365
|
+
};
|
|
191
366
|
readonly flowFolder: {
|
|
192
367
|
readonly type: "string";
|
|
193
368
|
readonly default: ".depflow";
|
|
194
369
|
};
|
|
195
370
|
readonly outDir: {
|
|
196
371
|
readonly type: "string";
|
|
197
|
-
readonly default: "
|
|
372
|
+
readonly default: "dist";
|
|
198
373
|
};
|
|
199
374
|
readonly tsconfig: {
|
|
200
375
|
readonly type: "string";
|
|
@@ -222,6 +397,7 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
222
397
|
};
|
|
223
398
|
readonly tag: {
|
|
224
399
|
readonly type: "string";
|
|
400
|
+
readonly default: "main";
|
|
225
401
|
};
|
|
226
402
|
readonly builder: {
|
|
227
403
|
readonly type: "array";
|
|
@@ -243,11 +419,43 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
243
419
|
};
|
|
244
420
|
}];
|
|
245
421
|
};
|
|
246
|
-
readonly
|
|
422
|
+
readonly extract: {
|
|
247
423
|
readonly union: [{
|
|
248
424
|
readonly type: "string";
|
|
249
425
|
}, {
|
|
250
|
-
readonly type: "
|
|
426
|
+
readonly type: "array";
|
|
427
|
+
readonly items: {
|
|
428
|
+
type: "object";
|
|
429
|
+
properties: {
|
|
430
|
+
readonly from: {
|
|
431
|
+
readonly type: "string";
|
|
432
|
+
readonly required: true;
|
|
433
|
+
};
|
|
434
|
+
readonly to: {
|
|
435
|
+
readonly type: "string";
|
|
436
|
+
readonly required: true;
|
|
437
|
+
};
|
|
438
|
+
readonly replacer: {
|
|
439
|
+
readonly union: [{
|
|
440
|
+
readonly type: "string";
|
|
441
|
+
}, {
|
|
442
|
+
readonly type: "object";
|
|
443
|
+
readonly properties: {
|
|
444
|
+
readonly search: {
|
|
445
|
+
readonly type: "string";
|
|
446
|
+
readonly required: true;
|
|
447
|
+
};
|
|
448
|
+
readonly replace: {
|
|
449
|
+
readonly type: "string";
|
|
450
|
+
readonly required: true;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
}];
|
|
454
|
+
readonly nullable: true;
|
|
455
|
+
};
|
|
456
|
+
};
|
|
457
|
+
allowAdditionalProperties: undefined;
|
|
458
|
+
};
|
|
251
459
|
}];
|
|
252
460
|
};
|
|
253
461
|
};
|
|
@@ -275,6 +483,9 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
275
483
|
readonly type: "string";
|
|
276
484
|
readonly required: true;
|
|
277
485
|
};
|
|
486
|
+
readonly type: {
|
|
487
|
+
readonly type: "string";
|
|
488
|
+
};
|
|
278
489
|
readonly cdn: {
|
|
279
490
|
readonly type: "string";
|
|
280
491
|
};
|
|
@@ -300,6 +511,73 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
300
511
|
readonly type: "string";
|
|
301
512
|
readonly required: true;
|
|
302
513
|
};
|
|
514
|
+
readonly version: {
|
|
515
|
+
readonly type: "string";
|
|
516
|
+
readonly required: true;
|
|
517
|
+
};
|
|
518
|
+
readonly builder: {
|
|
519
|
+
readonly type: "array";
|
|
520
|
+
readonly default: [];
|
|
521
|
+
readonly items: {
|
|
522
|
+
type: "object";
|
|
523
|
+
properties: {
|
|
524
|
+
readonly maxTimeMs: {
|
|
525
|
+
readonly type: "number";
|
|
526
|
+
readonly default: 60000;
|
|
527
|
+
};
|
|
528
|
+
readonly run: {
|
|
529
|
+
readonly union: [{
|
|
530
|
+
readonly type: "string";
|
|
531
|
+
}, {
|
|
532
|
+
readonly type: "array";
|
|
533
|
+
readonly items: {
|
|
534
|
+
readonly type: "string";
|
|
535
|
+
};
|
|
536
|
+
}];
|
|
537
|
+
};
|
|
538
|
+
readonly extract: {
|
|
539
|
+
readonly union: [{
|
|
540
|
+
readonly type: "string";
|
|
541
|
+
}, {
|
|
542
|
+
readonly type: "array";
|
|
543
|
+
readonly items: {
|
|
544
|
+
type: "object";
|
|
545
|
+
properties: {
|
|
546
|
+
readonly from: {
|
|
547
|
+
readonly type: "string";
|
|
548
|
+
readonly required: true;
|
|
549
|
+
};
|
|
550
|
+
readonly to: {
|
|
551
|
+
readonly type: "string";
|
|
552
|
+
readonly required: true;
|
|
553
|
+
};
|
|
554
|
+
readonly replacer: {
|
|
555
|
+
readonly union: [{
|
|
556
|
+
readonly type: "string";
|
|
557
|
+
}, {
|
|
558
|
+
readonly type: "object";
|
|
559
|
+
readonly properties: {
|
|
560
|
+
readonly search: {
|
|
561
|
+
readonly type: "string";
|
|
562
|
+
readonly required: true;
|
|
563
|
+
};
|
|
564
|
+
readonly replace: {
|
|
565
|
+
readonly type: "string";
|
|
566
|
+
readonly required: true;
|
|
567
|
+
};
|
|
568
|
+
};
|
|
569
|
+
}];
|
|
570
|
+
readonly nullable: true;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
allowAdditionalProperties: undefined;
|
|
574
|
+
};
|
|
575
|
+
}];
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
allowAdditionalProperties: undefined;
|
|
579
|
+
};
|
|
580
|
+
};
|
|
303
581
|
readonly resolver: {
|
|
304
582
|
readonly type: "array";
|
|
305
583
|
readonly nullable: true;
|
|
@@ -321,6 +599,9 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
321
599
|
readonly type: "string";
|
|
322
600
|
readonly required: true;
|
|
323
601
|
};
|
|
602
|
+
readonly type: {
|
|
603
|
+
readonly type: "string";
|
|
604
|
+
};
|
|
324
605
|
readonly cdn: {
|
|
325
606
|
readonly type: "string";
|
|
326
607
|
};
|
|
@@ -337,35 +618,19 @@ export declare const config: Schema.Utils.FromObject<{
|
|
|
337
618
|
};
|
|
338
619
|
};
|
|
339
620
|
}, 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;
|
|
621
|
+
export declare const Schemas: {
|
|
622
|
+
Config: Schema.Utils.FromObject<{
|
|
623
|
+
readonly $schema: {
|
|
624
|
+
readonly type: "string";
|
|
625
|
+
readonly default: ".depflow/schema.json";
|
|
359
626
|
};
|
|
360
|
-
}, true>;
|
|
361
|
-
config: Schema.Utils.FromObject<{
|
|
362
627
|
readonly flowFolder: {
|
|
363
628
|
readonly type: "string";
|
|
364
629
|
readonly default: ".depflow";
|
|
365
630
|
};
|
|
366
631
|
readonly outDir: {
|
|
367
632
|
readonly type: "string";
|
|
368
|
-
readonly default: "
|
|
633
|
+
readonly default: "dist";
|
|
369
634
|
};
|
|
370
635
|
readonly tsconfig: {
|
|
371
636
|
readonly type: "string";
|
|
@@ -393,6 +658,7 @@ export declare const schemas: {
|
|
|
393
658
|
};
|
|
394
659
|
readonly tag: {
|
|
395
660
|
readonly type: "string";
|
|
661
|
+
readonly default: "main";
|
|
396
662
|
};
|
|
397
663
|
readonly builder: {
|
|
398
664
|
readonly type: "array";
|
|
@@ -414,11 +680,43 @@ export declare const schemas: {
|
|
|
414
680
|
};
|
|
415
681
|
}];
|
|
416
682
|
};
|
|
417
|
-
readonly
|
|
683
|
+
readonly extract: {
|
|
418
684
|
readonly union: [{
|
|
419
685
|
readonly type: "string";
|
|
420
686
|
}, {
|
|
421
|
-
readonly type: "
|
|
687
|
+
readonly type: "array";
|
|
688
|
+
readonly items: {
|
|
689
|
+
type: "object";
|
|
690
|
+
properties: {
|
|
691
|
+
readonly from: {
|
|
692
|
+
readonly type: "string";
|
|
693
|
+
readonly required: true;
|
|
694
|
+
};
|
|
695
|
+
readonly to: {
|
|
696
|
+
readonly type: "string";
|
|
697
|
+
readonly required: true;
|
|
698
|
+
};
|
|
699
|
+
readonly replacer: {
|
|
700
|
+
readonly union: [{
|
|
701
|
+
readonly type: "string";
|
|
702
|
+
}, {
|
|
703
|
+
readonly type: "object";
|
|
704
|
+
readonly properties: {
|
|
705
|
+
readonly search: {
|
|
706
|
+
readonly type: "string";
|
|
707
|
+
readonly required: true;
|
|
708
|
+
};
|
|
709
|
+
readonly replace: {
|
|
710
|
+
readonly type: "string";
|
|
711
|
+
readonly required: true;
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
}];
|
|
715
|
+
readonly nullable: true;
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
allowAdditionalProperties: undefined;
|
|
719
|
+
};
|
|
422
720
|
}];
|
|
423
721
|
};
|
|
424
722
|
};
|
|
@@ -446,6 +744,9 @@ export declare const schemas: {
|
|
|
446
744
|
readonly type: "string";
|
|
447
745
|
readonly required: true;
|
|
448
746
|
};
|
|
747
|
+
readonly type: {
|
|
748
|
+
readonly type: "string";
|
|
749
|
+
};
|
|
449
750
|
readonly cdn: {
|
|
450
751
|
readonly type: "string";
|
|
451
752
|
};
|
|
@@ -471,6 +772,73 @@ export declare const schemas: {
|
|
|
471
772
|
readonly type: "string";
|
|
472
773
|
readonly required: true;
|
|
473
774
|
};
|
|
775
|
+
readonly version: {
|
|
776
|
+
readonly type: "string";
|
|
777
|
+
readonly required: true;
|
|
778
|
+
};
|
|
779
|
+
readonly builder: {
|
|
780
|
+
readonly type: "array";
|
|
781
|
+
readonly default: [];
|
|
782
|
+
readonly items: {
|
|
783
|
+
type: "object";
|
|
784
|
+
properties: {
|
|
785
|
+
readonly maxTimeMs: {
|
|
786
|
+
readonly type: "number";
|
|
787
|
+
readonly default: 60000;
|
|
788
|
+
};
|
|
789
|
+
readonly run: {
|
|
790
|
+
readonly union: [{
|
|
791
|
+
readonly type: "string";
|
|
792
|
+
}, {
|
|
793
|
+
readonly type: "array";
|
|
794
|
+
readonly items: {
|
|
795
|
+
readonly type: "string";
|
|
796
|
+
};
|
|
797
|
+
}];
|
|
798
|
+
};
|
|
799
|
+
readonly extract: {
|
|
800
|
+
readonly union: [{
|
|
801
|
+
readonly type: "string";
|
|
802
|
+
}, {
|
|
803
|
+
readonly type: "array";
|
|
804
|
+
readonly items: {
|
|
805
|
+
type: "object";
|
|
806
|
+
properties: {
|
|
807
|
+
readonly from: {
|
|
808
|
+
readonly type: "string";
|
|
809
|
+
readonly required: true;
|
|
810
|
+
};
|
|
811
|
+
readonly to: {
|
|
812
|
+
readonly type: "string";
|
|
813
|
+
readonly required: true;
|
|
814
|
+
};
|
|
815
|
+
readonly replacer: {
|
|
816
|
+
readonly union: [{
|
|
817
|
+
readonly type: "string";
|
|
818
|
+
}, {
|
|
819
|
+
readonly type: "object";
|
|
820
|
+
readonly properties: {
|
|
821
|
+
readonly search: {
|
|
822
|
+
readonly type: "string";
|
|
823
|
+
readonly required: true;
|
|
824
|
+
};
|
|
825
|
+
readonly replace: {
|
|
826
|
+
readonly type: "string";
|
|
827
|
+
readonly required: true;
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
}];
|
|
831
|
+
readonly nullable: true;
|
|
832
|
+
};
|
|
833
|
+
};
|
|
834
|
+
allowAdditionalProperties: undefined;
|
|
835
|
+
};
|
|
836
|
+
}];
|
|
837
|
+
};
|
|
838
|
+
};
|
|
839
|
+
allowAdditionalProperties: undefined;
|
|
840
|
+
};
|
|
841
|
+
};
|
|
474
842
|
readonly resolver: {
|
|
475
843
|
readonly type: "array";
|
|
476
844
|
readonly nullable: true;
|
|
@@ -492,6 +860,9 @@ export declare const schemas: {
|
|
|
492
860
|
readonly type: "string";
|
|
493
861
|
readonly required: true;
|
|
494
862
|
};
|
|
863
|
+
readonly type: {
|
|
864
|
+
readonly type: "string";
|
|
865
|
+
};
|
|
495
866
|
readonly cdn: {
|
|
496
867
|
readonly type: "string";
|
|
497
868
|
};
|
|
@@ -508,7 +879,37 @@ export declare const schemas: {
|
|
|
508
879
|
};
|
|
509
880
|
};
|
|
510
881
|
}, undefined>;
|
|
511
|
-
|
|
882
|
+
TsConfig: Schema.Utils.FromObject<{
|
|
883
|
+
readonly compilerOptions: {
|
|
884
|
+
readonly type: "object";
|
|
885
|
+
readonly properties: {
|
|
886
|
+
readonly baseUrl: {
|
|
887
|
+
readonly type: "string";
|
|
888
|
+
};
|
|
889
|
+
readonly rootDir: {
|
|
890
|
+
readonly type: "string";
|
|
891
|
+
};
|
|
892
|
+
readonly outDir: {
|
|
893
|
+
readonly type: "string";
|
|
894
|
+
};
|
|
895
|
+
readonly paths: {
|
|
896
|
+
readonly type: "object";
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
readonly allowAdditionalProperties: true;
|
|
900
|
+
};
|
|
901
|
+
}, true>;
|
|
902
|
+
ImportMap: Schema.Utils.FromObject<{
|
|
903
|
+
readonly imports: {
|
|
904
|
+
readonly type: "object";
|
|
905
|
+
readonly default: {};
|
|
906
|
+
};
|
|
907
|
+
readonly scopes: {
|
|
908
|
+
readonly type: "object";
|
|
909
|
+
readonly default: {};
|
|
910
|
+
};
|
|
911
|
+
}, undefined>;
|
|
912
|
+
BuilderEntry: Schema.Utils.FromObject<{
|
|
512
913
|
readonly maxTimeMs: {
|
|
513
914
|
readonly type: "number";
|
|
514
915
|
readonly default: 60000;
|
|
@@ -523,15 +924,47 @@ export declare const schemas: {
|
|
|
523
924
|
};
|
|
524
925
|
}];
|
|
525
926
|
};
|
|
526
|
-
readonly
|
|
927
|
+
readonly extract: {
|
|
527
928
|
readonly union: [{
|
|
528
929
|
readonly type: "string";
|
|
529
930
|
}, {
|
|
530
|
-
readonly type: "
|
|
931
|
+
readonly type: "array";
|
|
932
|
+
readonly items: {
|
|
933
|
+
type: "object";
|
|
934
|
+
properties: {
|
|
935
|
+
readonly from: {
|
|
936
|
+
readonly type: "string";
|
|
937
|
+
readonly required: true;
|
|
938
|
+
};
|
|
939
|
+
readonly to: {
|
|
940
|
+
readonly type: "string";
|
|
941
|
+
readonly required: true;
|
|
942
|
+
};
|
|
943
|
+
readonly replacer: {
|
|
944
|
+
readonly union: [{
|
|
945
|
+
readonly type: "string";
|
|
946
|
+
}, {
|
|
947
|
+
readonly type: "object";
|
|
948
|
+
readonly properties: {
|
|
949
|
+
readonly search: {
|
|
950
|
+
readonly type: "string";
|
|
951
|
+
readonly required: true;
|
|
952
|
+
};
|
|
953
|
+
readonly replace: {
|
|
954
|
+
readonly type: "string";
|
|
955
|
+
readonly required: true;
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
}];
|
|
959
|
+
readonly nullable: true;
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
allowAdditionalProperties: undefined;
|
|
963
|
+
};
|
|
531
964
|
}];
|
|
532
965
|
};
|
|
533
966
|
}, undefined>;
|
|
534
|
-
|
|
967
|
+
ResolverEntry: Schema.Utils.FromObject<{
|
|
535
968
|
readonly alias: {
|
|
536
969
|
readonly type: "string";
|
|
537
970
|
readonly required: true;
|
|
@@ -546,6 +979,9 @@ export declare const schemas: {
|
|
|
546
979
|
readonly type: "string";
|
|
547
980
|
readonly required: true;
|
|
548
981
|
};
|
|
982
|
+
readonly type: {
|
|
983
|
+
readonly type: "string";
|
|
984
|
+
};
|
|
549
985
|
readonly cdn: {
|
|
550
986
|
readonly type: "string";
|
|
551
987
|
};
|
|
@@ -554,7 +990,7 @@ export declare const schemas: {
|
|
|
554
990
|
readonly required: true;
|
|
555
991
|
};
|
|
556
992
|
}, undefined>;
|
|
557
|
-
|
|
993
|
+
GitDependency: Schema.Utils.FromObject<{
|
|
558
994
|
readonly name: {
|
|
559
995
|
readonly type: "string";
|
|
560
996
|
readonly required: true;
|
|
@@ -565,6 +1001,7 @@ export declare const schemas: {
|
|
|
565
1001
|
};
|
|
566
1002
|
readonly tag: {
|
|
567
1003
|
readonly type: "string";
|
|
1004
|
+
readonly default: "main";
|
|
568
1005
|
};
|
|
569
1006
|
readonly builder: {
|
|
570
1007
|
readonly type: "array";
|
|
@@ -586,11 +1023,151 @@ export declare const schemas: {
|
|
|
586
1023
|
};
|
|
587
1024
|
}];
|
|
588
1025
|
};
|
|
589
|
-
readonly
|
|
1026
|
+
readonly extract: {
|
|
1027
|
+
readonly union: [{
|
|
1028
|
+
readonly type: "string";
|
|
1029
|
+
}, {
|
|
1030
|
+
readonly type: "array";
|
|
1031
|
+
readonly items: {
|
|
1032
|
+
type: "object";
|
|
1033
|
+
properties: {
|
|
1034
|
+
readonly from: {
|
|
1035
|
+
readonly type: "string";
|
|
1036
|
+
readonly required: true;
|
|
1037
|
+
};
|
|
1038
|
+
readonly to: {
|
|
1039
|
+
readonly type: "string";
|
|
1040
|
+
readonly required: true;
|
|
1041
|
+
};
|
|
1042
|
+
readonly replacer: {
|
|
1043
|
+
readonly union: [{
|
|
1044
|
+
readonly type: "string";
|
|
1045
|
+
}, {
|
|
1046
|
+
readonly type: "object";
|
|
1047
|
+
readonly properties: {
|
|
1048
|
+
readonly search: {
|
|
1049
|
+
readonly type: "string";
|
|
1050
|
+
readonly required: true;
|
|
1051
|
+
};
|
|
1052
|
+
readonly replace: {
|
|
1053
|
+
readonly type: "string";
|
|
1054
|
+
readonly required: true;
|
|
1055
|
+
};
|
|
1056
|
+
};
|
|
1057
|
+
}];
|
|
1058
|
+
readonly nullable: true;
|
|
1059
|
+
};
|
|
1060
|
+
};
|
|
1061
|
+
allowAdditionalProperties: undefined;
|
|
1062
|
+
};
|
|
1063
|
+
}];
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
allowAdditionalProperties: undefined;
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
readonly resolver: {
|
|
1070
|
+
readonly type: "array";
|
|
1071
|
+
readonly nullable: true;
|
|
1072
|
+
readonly default: [];
|
|
1073
|
+
readonly items: {
|
|
1074
|
+
type: "object";
|
|
1075
|
+
properties: {
|
|
1076
|
+
readonly alias: {
|
|
1077
|
+
readonly type: "string";
|
|
1078
|
+
readonly required: true;
|
|
1079
|
+
};
|
|
1080
|
+
readonly target: {
|
|
590
1081
|
readonly union: [{
|
|
591
1082
|
readonly type: "string";
|
|
592
1083
|
}, {
|
|
593
1084
|
readonly type: "object";
|
|
1085
|
+
readonly properties: {
|
|
1086
|
+
readonly local: {
|
|
1087
|
+
readonly type: "string";
|
|
1088
|
+
readonly required: true;
|
|
1089
|
+
};
|
|
1090
|
+
readonly type: {
|
|
1091
|
+
readonly type: "string";
|
|
1092
|
+
};
|
|
1093
|
+
readonly cdn: {
|
|
1094
|
+
readonly type: "string";
|
|
1095
|
+
};
|
|
1096
|
+
};
|
|
1097
|
+
}];
|
|
1098
|
+
readonly required: true;
|
|
1099
|
+
};
|
|
1100
|
+
};
|
|
1101
|
+
allowAdditionalProperties: undefined;
|
|
1102
|
+
};
|
|
1103
|
+
};
|
|
1104
|
+
}, undefined>;
|
|
1105
|
+
NpmDependency: Schema.Utils.FromObject<{
|
|
1106
|
+
readonly name: {
|
|
1107
|
+
readonly type: "string";
|
|
1108
|
+
readonly required: true;
|
|
1109
|
+
};
|
|
1110
|
+
readonly version: {
|
|
1111
|
+
readonly type: "string";
|
|
1112
|
+
readonly required: true;
|
|
1113
|
+
};
|
|
1114
|
+
readonly builder: {
|
|
1115
|
+
readonly type: "array";
|
|
1116
|
+
readonly default: [];
|
|
1117
|
+
readonly items: {
|
|
1118
|
+
type: "object";
|
|
1119
|
+
properties: {
|
|
1120
|
+
readonly maxTimeMs: {
|
|
1121
|
+
readonly type: "number";
|
|
1122
|
+
readonly default: 60000;
|
|
1123
|
+
};
|
|
1124
|
+
readonly run: {
|
|
1125
|
+
readonly union: [{
|
|
1126
|
+
readonly type: "string";
|
|
1127
|
+
}, {
|
|
1128
|
+
readonly type: "array";
|
|
1129
|
+
readonly items: {
|
|
1130
|
+
readonly type: "string";
|
|
1131
|
+
};
|
|
1132
|
+
}];
|
|
1133
|
+
};
|
|
1134
|
+
readonly extract: {
|
|
1135
|
+
readonly union: [{
|
|
1136
|
+
readonly type: "string";
|
|
1137
|
+
}, {
|
|
1138
|
+
readonly type: "array";
|
|
1139
|
+
readonly items: {
|
|
1140
|
+
type: "object";
|
|
1141
|
+
properties: {
|
|
1142
|
+
readonly from: {
|
|
1143
|
+
readonly type: "string";
|
|
1144
|
+
readonly required: true;
|
|
1145
|
+
};
|
|
1146
|
+
readonly to: {
|
|
1147
|
+
readonly type: "string";
|
|
1148
|
+
readonly required: true;
|
|
1149
|
+
};
|
|
1150
|
+
readonly replacer: {
|
|
1151
|
+
readonly union: [{
|
|
1152
|
+
readonly type: "string";
|
|
1153
|
+
}, {
|
|
1154
|
+
readonly type: "object";
|
|
1155
|
+
readonly properties: {
|
|
1156
|
+
readonly search: {
|
|
1157
|
+
readonly type: "string";
|
|
1158
|
+
readonly required: true;
|
|
1159
|
+
};
|
|
1160
|
+
readonly replace: {
|
|
1161
|
+
readonly type: "string";
|
|
1162
|
+
readonly required: true;
|
|
1163
|
+
};
|
|
1164
|
+
};
|
|
1165
|
+
}];
|
|
1166
|
+
readonly nullable: true;
|
|
1167
|
+
};
|
|
1168
|
+
};
|
|
1169
|
+
allowAdditionalProperties: undefined;
|
|
1170
|
+
};
|
|
594
1171
|
}];
|
|
595
1172
|
};
|
|
596
1173
|
};
|
|
@@ -618,6 +1195,9 @@ export declare const schemas: {
|
|
|
618
1195
|
readonly type: "string";
|
|
619
1196
|
readonly required: true;
|
|
620
1197
|
};
|
|
1198
|
+
readonly type: {
|
|
1199
|
+
readonly type: "string";
|
|
1200
|
+
};
|
|
621
1201
|
readonly cdn: {
|
|
622
1202
|
readonly type: "string";
|
|
623
1203
|
};
|
|
@@ -631,11 +1211,14 @@ export declare const schemas: {
|
|
|
631
1211
|
};
|
|
632
1212
|
}, undefined>;
|
|
633
1213
|
};
|
|
634
|
-
export declare namespace
|
|
635
|
-
type
|
|
636
|
-
type
|
|
637
|
-
type
|
|
638
|
-
type
|
|
639
|
-
type
|
|
1214
|
+
export declare namespace Schemas {
|
|
1215
|
+
type Config = typeof Config;
|
|
1216
|
+
type BuilderEntry = typeof BuilderEntry;
|
|
1217
|
+
type ResolverEntry = typeof ResolverEntry;
|
|
1218
|
+
type GitDependency = typeof GitDependency;
|
|
1219
|
+
type NpmDependency = typeof NpmDependency;
|
|
1220
|
+
type TsConfig = typeof TsConfig;
|
|
1221
|
+
type ImportMap = typeof ImportMap;
|
|
1222
|
+
type ExtractorEntry = typeof ExtractorEntry;
|
|
640
1223
|
}
|
|
641
|
-
export default
|
|
1224
|
+
export default Schemas;
|