depflow 2.0.0-dev.1 → 2.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.
Files changed (94) hide show
  1. package/build/{bin → cli}/DepFLowCLI.d.ts +4 -2
  2. package/build/{bin → cli}/DepFLowCLI.js +60 -36
  3. package/build/cli/DepFLowCLI.js.map +1 -0
  4. package/build/{bin → cli}/bin.js +15 -4
  5. package/build/cli/bin.js.map +1 -0
  6. package/build/config/Config.d.ts +28 -0
  7. package/build/config/Config.js +46 -0
  8. package/build/config/Config.js.map +1 -0
  9. package/build/config/ImportMap.d.ts +38 -0
  10. package/build/config/ImportMap.js +83 -0
  11. package/build/config/ImportMap.js.map +1 -0
  12. package/build/config/Tsconfig.d.ts +57 -0
  13. package/build/config/Tsconfig.js +99 -0
  14. package/build/config/Tsconfig.js.map +1 -0
  15. package/build/config/schemas.d.ts +592 -0
  16. package/build/config/schemas.js +51 -0
  17. package/build/config/schemas.js.map +1 -0
  18. package/build/support/Dependency.d.ts +127 -0
  19. package/build/support/Dependency.js +307 -0
  20. package/build/support/Dependency.js.map +1 -0
  21. package/build/support/File.d.ts +80 -0
  22. package/build/support/File.js +123 -0
  23. package/build/support/File.js.map +1 -0
  24. package/build/support/Git.js.map +1 -0
  25. package/build/support/PathFixer.d.ts +36 -0
  26. package/build/support/PathFixer.js +161 -0
  27. package/build/support/PathFixer.js.map +1 -0
  28. package/build/support/PathResolver/AliasCompiler.d.ts +25 -0
  29. package/build/support/PathResolver/AliasCompiler.js +39 -0
  30. package/build/support/PathResolver/AliasCompiler.js.map +1 -0
  31. package/build/support/PathResolver/PathResolver.d.ts +45 -0
  32. package/build/support/PathResolver/PathResolver.js +99 -0
  33. package/build/support/PathResolver/PathResolver.js.map +1 -0
  34. package/build/support/PathResolver/PathRewriter.d.ts +18 -0
  35. package/build/support/PathResolver/PathRewriter.js +47 -0
  36. package/build/support/PathResolver/PathRewriter.js.map +1 -0
  37. package/build/support/PathResolver/Utils.d.ts +36 -0
  38. package/build/support/PathResolver/Utils.js +45 -0
  39. package/build/support/PathResolver/Utils.js.map +1 -0
  40. package/build/support/PathResolver.d.ts +100 -0
  41. package/build/support/PathResolver.js +280 -0
  42. package/build/support/PathResolver.js.map +1 -0
  43. package/build/support/Resolver/AliasCompiler.d.ts +18 -0
  44. package/build/support/Resolver/AliasCompiler.js +32 -0
  45. package/build/support/Resolver/AliasCompiler.js.map +1 -0
  46. package/build/support/Resolver/PathResolver.d.ts +25 -0
  47. package/build/support/Resolver/PathResolver.js +79 -0
  48. package/build/support/Resolver/PathResolver.js.map +1 -0
  49. package/build/support/Resolver/PathRewriter.d.ts +10 -0
  50. package/build/support/Resolver/PathRewriter.js +39 -0
  51. package/build/support/Resolver/PathRewriter.js.map +1 -0
  52. package/build/support/Resolver/Utils.d.ts +36 -0
  53. package/build/support/Resolver/Utils.js +45 -0
  54. package/build/support/Resolver/Utils.js.map +1 -0
  55. package/build/support/Utils.d.ts +30 -0
  56. package/build/support/Utils.js +95 -0
  57. package/build/support/Utils.js.map +1 -0
  58. package/build/support/Validator.d.ts +22 -0
  59. package/build/support/Validator.js +28 -0
  60. package/build/support/Validator.js.map +1 -0
  61. package/package.json +3 -2
  62. package/build/Config.d.ts +0 -15
  63. package/build/Config.js +0 -21
  64. package/build/Config.js.map +0 -1
  65. package/build/Dependency.d.ts +0 -86
  66. package/build/Dependency.js +0 -264
  67. package/build/Dependency.js.map +0 -1
  68. package/build/File.d.ts +0 -9
  69. package/build/File.js +0 -41
  70. package/build/File.js.map +0 -1
  71. package/build/Git.js.map +0 -1
  72. package/build/PathFixer.d.ts +0 -35
  73. package/build/PathFixer.js +0 -143
  74. package/build/PathFixer.js.map +0 -1
  75. package/build/Tsconfig.d.ts +0 -13
  76. package/build/Tsconfig.js +0 -16
  77. package/build/Tsconfig.js.map +0 -1
  78. package/build/Utils.d.ts +0 -16
  79. package/build/Utils.js +0 -40
  80. package/build/Utils.js.map +0 -1
  81. package/build/Validator.d.ts +0 -9
  82. package/build/Validator.js +0 -15
  83. package/build/Validator.js.map +0 -1
  84. package/build/bin/DepFLowCLI.js.map +0 -1
  85. package/build/bin/bin.d.ts +0 -2
  86. package/build/bin/bin.js.map +0 -1
  87. package/build/bin.js +0 -26
  88. package/build/bin.js.map +0 -1
  89. package/build/schemas.d.ts +0 -296
  90. package/build/schemas.js +0 -29
  91. package/build/schemas.js.map +0 -1
  92. /package/build/{bin.d.ts → cli/bin.d.ts} +0 -0
  93. /package/build/{Git.d.ts → support/Git.d.ts} +0 -0
  94. /package/build/{Git.js → support/Git.js} +0 -0
@@ -0,0 +1,592 @@
1
+ import { Schema } from '@netfeez/common';
2
+ export declare const basicTsconfig: Schema<{
3
+ readonly compilerOptions: {
4
+ readonly type: "object";
5
+ readonly properties: {
6
+ readonly baseUrl: {
7
+ readonly type: "string";
8
+ };
9
+ readonly rootDir: {
10
+ readonly type: "string";
11
+ };
12
+ readonly outDir: {
13
+ readonly type: "string";
14
+ };
15
+ readonly paths: {
16
+ readonly type: "object";
17
+ };
18
+ };
19
+ };
20
+ }>;
21
+ export declare const builder: Schema<{
22
+ readonly run: {
23
+ readonly union: [{
24
+ readonly type: "string";
25
+ }, {
26
+ readonly type: "array";
27
+ readonly items: {
28
+ readonly type: "string";
29
+ };
30
+ }];
31
+ };
32
+ readonly move: {
33
+ readonly union: [{
34
+ readonly type: "string";
35
+ }, {
36
+ readonly type: "object";
37
+ }];
38
+ };
39
+ }>;
40
+ export declare const pathResolverEntry: Schema<{
41
+ readonly alias: {
42
+ readonly type: "string";
43
+ readonly required: true;
44
+ };
45
+ readonly target: {
46
+ readonly union: [{
47
+ readonly type: "string";
48
+ }, {
49
+ readonly type: "object";
50
+ readonly properties: {
51
+ readonly local: {
52
+ readonly type: "string";
53
+ readonly required: true;
54
+ };
55
+ readonly cdn: {
56
+ readonly type: "string";
57
+ };
58
+ };
59
+ }];
60
+ readonly required: true;
61
+ };
62
+ }>;
63
+ export declare const dependency: Schema<{
64
+ readonly name: {
65
+ readonly type: "string";
66
+ readonly required: true;
67
+ };
68
+ readonly repo: {
69
+ readonly type: "string";
70
+ readonly required: true;
71
+ };
72
+ readonly branch: {
73
+ readonly type: "string";
74
+ };
75
+ readonly builder: {
76
+ readonly type: "array";
77
+ readonly default: [];
78
+ readonly items: {
79
+ readonly type: "object";
80
+ readonly properties: {
81
+ readonly run: {
82
+ readonly union: [{
83
+ readonly type: "string";
84
+ }, {
85
+ readonly type: "array";
86
+ readonly items: {
87
+ readonly type: "string";
88
+ };
89
+ }];
90
+ };
91
+ readonly move: {
92
+ readonly union: [{
93
+ readonly type: "string";
94
+ }, {
95
+ readonly type: "object";
96
+ }];
97
+ };
98
+ };
99
+ };
100
+ };
101
+ readonly resolver: {
102
+ readonly type: "array";
103
+ readonly nullable: true;
104
+ readonly default: [];
105
+ readonly items: {
106
+ readonly type: "object";
107
+ readonly properties: {
108
+ readonly alias: {
109
+ readonly type: "string";
110
+ readonly required: true;
111
+ };
112
+ readonly target: {
113
+ readonly union: [{
114
+ readonly type: "string";
115
+ }, {
116
+ readonly type: "object";
117
+ readonly properties: {
118
+ readonly local: {
119
+ readonly type: "string";
120
+ readonly required: true;
121
+ };
122
+ readonly cdn: {
123
+ readonly type: "string";
124
+ };
125
+ };
126
+ }];
127
+ readonly required: true;
128
+ };
129
+ };
130
+ };
131
+ };
132
+ }>;
133
+ export declare const npmDependencySchema: Schema<{
134
+ readonly name: {
135
+ readonly type: "string";
136
+ readonly required: true;
137
+ };
138
+ readonly resolver: {
139
+ readonly type: "array";
140
+ readonly nullable: true;
141
+ readonly default: [];
142
+ readonly items: {
143
+ readonly type: "object";
144
+ readonly properties: {
145
+ readonly alias: {
146
+ readonly type: "string";
147
+ readonly required: true;
148
+ };
149
+ readonly target: {
150
+ readonly union: [{
151
+ readonly type: "string";
152
+ }, {
153
+ readonly type: "object";
154
+ readonly properties: {
155
+ readonly local: {
156
+ readonly type: "string";
157
+ readonly required: true;
158
+ };
159
+ readonly cdn: {
160
+ readonly type: "string";
161
+ };
162
+ };
163
+ }];
164
+ readonly required: true;
165
+ };
166
+ };
167
+ };
168
+ };
169
+ }>;
170
+ export declare const config: Schema<{
171
+ readonly flowFolder: {
172
+ readonly type: "string";
173
+ readonly default: ".depflow";
174
+ };
175
+ readonly outDir: {
176
+ readonly type: "string";
177
+ readonly default: ".";
178
+ };
179
+ readonly tsconfig: {
180
+ readonly type: "string";
181
+ readonly nullable: true;
182
+ readonly default: null;
183
+ };
184
+ readonly importmap: {
185
+ readonly type: "string";
186
+ readonly nullable: true;
187
+ readonly default: null;
188
+ };
189
+ readonly dependencies: {
190
+ readonly type: "array";
191
+ readonly default: [];
192
+ readonly items: {
193
+ readonly type: "object";
194
+ readonly properties: {
195
+ readonly name: {
196
+ readonly type: "string";
197
+ readonly required: true;
198
+ };
199
+ readonly repo: {
200
+ readonly type: "string";
201
+ readonly required: true;
202
+ };
203
+ readonly branch: {
204
+ readonly type: "string";
205
+ };
206
+ readonly builder: {
207
+ readonly type: "array";
208
+ readonly default: [];
209
+ readonly items: {
210
+ readonly type: "object";
211
+ readonly properties: {
212
+ readonly run: {
213
+ readonly union: [{
214
+ readonly type: "string";
215
+ }, {
216
+ readonly type: "array";
217
+ readonly items: {
218
+ readonly type: "string";
219
+ };
220
+ }];
221
+ };
222
+ readonly move: {
223
+ readonly union: [{
224
+ readonly type: "string";
225
+ }, {
226
+ readonly type: "object";
227
+ }];
228
+ };
229
+ };
230
+ };
231
+ };
232
+ readonly resolver: {
233
+ readonly type: "array";
234
+ readonly nullable: true;
235
+ readonly default: [];
236
+ readonly items: {
237
+ readonly type: "object";
238
+ readonly properties: {
239
+ readonly alias: {
240
+ readonly type: "string";
241
+ readonly required: true;
242
+ };
243
+ readonly target: {
244
+ readonly union: [{
245
+ readonly type: "string";
246
+ }, {
247
+ readonly type: "object";
248
+ readonly properties: {
249
+ readonly local: {
250
+ readonly type: "string";
251
+ readonly required: true;
252
+ };
253
+ readonly cdn: {
254
+ readonly type: "string";
255
+ };
256
+ };
257
+ }];
258
+ readonly required: true;
259
+ };
260
+ };
261
+ };
262
+ };
263
+ };
264
+ };
265
+ };
266
+ readonly npmDependencies: {
267
+ readonly type: "array";
268
+ readonly default: [];
269
+ readonly items: {
270
+ readonly type: "object";
271
+ readonly properties: {
272
+ readonly name: {
273
+ readonly type: "string";
274
+ readonly required: true;
275
+ };
276
+ readonly resolver: {
277
+ readonly type: "array";
278
+ readonly nullable: true;
279
+ readonly default: [];
280
+ readonly items: {
281
+ readonly type: "object";
282
+ readonly properties: {
283
+ readonly alias: {
284
+ readonly type: "string";
285
+ readonly required: true;
286
+ };
287
+ readonly target: {
288
+ readonly union: [{
289
+ readonly type: "string";
290
+ }, {
291
+ readonly type: "object";
292
+ readonly properties: {
293
+ readonly local: {
294
+ readonly type: "string";
295
+ readonly required: true;
296
+ };
297
+ readonly cdn: {
298
+ readonly type: "string";
299
+ };
300
+ };
301
+ }];
302
+ readonly required: true;
303
+ };
304
+ };
305
+ };
306
+ };
307
+ };
308
+ };
309
+ };
310
+ }>;
311
+ export declare const schemas: {
312
+ basicTsconfig: Schema<{
313
+ readonly compilerOptions: {
314
+ readonly type: "object";
315
+ readonly properties: {
316
+ readonly baseUrl: {
317
+ readonly type: "string";
318
+ };
319
+ readonly rootDir: {
320
+ readonly type: "string";
321
+ };
322
+ readonly outDir: {
323
+ readonly type: "string";
324
+ };
325
+ readonly paths: {
326
+ readonly type: "object";
327
+ };
328
+ };
329
+ };
330
+ }>;
331
+ config: Schema<{
332
+ readonly flowFolder: {
333
+ readonly type: "string";
334
+ readonly default: ".depflow";
335
+ };
336
+ readonly outDir: {
337
+ readonly type: "string";
338
+ readonly default: ".";
339
+ };
340
+ readonly tsconfig: {
341
+ readonly type: "string";
342
+ readonly nullable: true;
343
+ readonly default: null;
344
+ };
345
+ readonly importmap: {
346
+ readonly type: "string";
347
+ readonly nullable: true;
348
+ readonly default: null;
349
+ };
350
+ readonly dependencies: {
351
+ readonly type: "array";
352
+ readonly default: [];
353
+ readonly items: {
354
+ readonly type: "object";
355
+ readonly properties: {
356
+ readonly name: {
357
+ readonly type: "string";
358
+ readonly required: true;
359
+ };
360
+ readonly repo: {
361
+ readonly type: "string";
362
+ readonly required: true;
363
+ };
364
+ readonly branch: {
365
+ readonly type: "string";
366
+ };
367
+ readonly builder: {
368
+ readonly type: "array";
369
+ readonly default: [];
370
+ readonly items: {
371
+ readonly type: "object";
372
+ readonly properties: {
373
+ readonly run: {
374
+ readonly union: [{
375
+ readonly type: "string";
376
+ }, {
377
+ readonly type: "array";
378
+ readonly items: {
379
+ readonly type: "string";
380
+ };
381
+ }];
382
+ };
383
+ readonly move: {
384
+ readonly union: [{
385
+ readonly type: "string";
386
+ }, {
387
+ readonly type: "object";
388
+ }];
389
+ };
390
+ };
391
+ };
392
+ };
393
+ readonly resolver: {
394
+ readonly type: "array";
395
+ readonly nullable: true;
396
+ readonly default: [];
397
+ readonly items: {
398
+ readonly type: "object";
399
+ readonly properties: {
400
+ readonly alias: {
401
+ readonly type: "string";
402
+ readonly required: true;
403
+ };
404
+ readonly target: {
405
+ readonly union: [{
406
+ readonly type: "string";
407
+ }, {
408
+ readonly type: "object";
409
+ readonly properties: {
410
+ readonly local: {
411
+ readonly type: "string";
412
+ readonly required: true;
413
+ };
414
+ readonly cdn: {
415
+ readonly type: "string";
416
+ };
417
+ };
418
+ }];
419
+ readonly required: true;
420
+ };
421
+ };
422
+ };
423
+ };
424
+ };
425
+ };
426
+ };
427
+ readonly npmDependencies: {
428
+ readonly type: "array";
429
+ readonly default: [];
430
+ readonly items: {
431
+ readonly type: "object";
432
+ readonly properties: {
433
+ readonly name: {
434
+ readonly type: "string";
435
+ readonly required: true;
436
+ };
437
+ readonly resolver: {
438
+ readonly type: "array";
439
+ readonly nullable: true;
440
+ readonly default: [];
441
+ readonly items: {
442
+ readonly type: "object";
443
+ readonly properties: {
444
+ readonly alias: {
445
+ readonly type: "string";
446
+ readonly required: true;
447
+ };
448
+ readonly target: {
449
+ readonly union: [{
450
+ readonly type: "string";
451
+ }, {
452
+ readonly type: "object";
453
+ readonly properties: {
454
+ readonly local: {
455
+ readonly type: "string";
456
+ readonly required: true;
457
+ };
458
+ readonly cdn: {
459
+ readonly type: "string";
460
+ };
461
+ };
462
+ }];
463
+ readonly required: true;
464
+ };
465
+ };
466
+ };
467
+ };
468
+ };
469
+ };
470
+ };
471
+ }>;
472
+ builder: Schema<{
473
+ readonly run: {
474
+ readonly union: [{
475
+ readonly type: "string";
476
+ }, {
477
+ readonly type: "array";
478
+ readonly items: {
479
+ readonly type: "string";
480
+ };
481
+ }];
482
+ };
483
+ readonly move: {
484
+ readonly union: [{
485
+ readonly type: "string";
486
+ }, {
487
+ readonly type: "object";
488
+ }];
489
+ };
490
+ }>;
491
+ pathResolver: Schema<{
492
+ readonly alias: {
493
+ readonly type: "string";
494
+ readonly required: true;
495
+ };
496
+ readonly target: {
497
+ readonly union: [{
498
+ readonly type: "string";
499
+ }, {
500
+ readonly type: "object";
501
+ readonly properties: {
502
+ readonly local: {
503
+ readonly type: "string";
504
+ readonly required: true;
505
+ };
506
+ readonly cdn: {
507
+ readonly type: "string";
508
+ };
509
+ };
510
+ }];
511
+ readonly required: true;
512
+ };
513
+ }>;
514
+ dependency: Schema<{
515
+ readonly name: {
516
+ readonly type: "string";
517
+ readonly required: true;
518
+ };
519
+ readonly repo: {
520
+ readonly type: "string";
521
+ readonly required: true;
522
+ };
523
+ readonly branch: {
524
+ readonly type: "string";
525
+ };
526
+ readonly builder: {
527
+ readonly type: "array";
528
+ readonly default: [];
529
+ readonly items: {
530
+ readonly type: "object";
531
+ readonly properties: {
532
+ readonly run: {
533
+ readonly union: [{
534
+ readonly type: "string";
535
+ }, {
536
+ readonly type: "array";
537
+ readonly items: {
538
+ readonly type: "string";
539
+ };
540
+ }];
541
+ };
542
+ readonly move: {
543
+ readonly union: [{
544
+ readonly type: "string";
545
+ }, {
546
+ readonly type: "object";
547
+ }];
548
+ };
549
+ };
550
+ };
551
+ };
552
+ readonly resolver: {
553
+ readonly type: "array";
554
+ readonly nullable: true;
555
+ readonly default: [];
556
+ readonly items: {
557
+ readonly type: "object";
558
+ readonly properties: {
559
+ readonly alias: {
560
+ readonly type: "string";
561
+ readonly required: true;
562
+ };
563
+ readonly target: {
564
+ readonly union: [{
565
+ readonly type: "string";
566
+ }, {
567
+ readonly type: "object";
568
+ readonly properties: {
569
+ readonly local: {
570
+ readonly type: "string";
571
+ readonly required: true;
572
+ };
573
+ readonly cdn: {
574
+ readonly type: "string";
575
+ };
576
+ };
577
+ }];
578
+ readonly required: true;
579
+ };
580
+ };
581
+ };
582
+ };
583
+ }>;
584
+ };
585
+ export declare namespace schemas {
586
+ type config = typeof config;
587
+ type builder = typeof builder;
588
+ type pathResolverEntry = typeof pathResolverEntry;
589
+ type dependency = typeof dependency;
590
+ type basicTsconfig = typeof basicTsconfig;
591
+ }
592
+ export default schemas;
@@ -0,0 +1,51 @@
1
+ import { Schema } from '@netfeez/common';
2
+ export const basicTsconfig = new Schema({
3
+ compilerOptions: { type: 'object', properties: {
4
+ baseUrl: { type: 'string' },
5
+ rootDir: { type: 'string' },
6
+ outDir: { type: 'string' },
7
+ paths: { type: 'object' }
8
+ } }
9
+ });
10
+ export const builder = new Schema({
11
+ run: { union: [{ type: 'string' }, { type: 'array', items: { type: 'string' } }] },
12
+ move: { union: [{ type: 'string' }, { type: 'object' }] }
13
+ });
14
+ export const pathResolverEntry = new Schema({
15
+ alias: { type: 'string', required: true },
16
+ target: { union: [
17
+ { type: 'string' },
18
+ { type: 'object', properties: {
19
+ local: { type: 'string', required: true },
20
+ cdn: { type: 'string' }
21
+ } }
22
+ ], required: true }
23
+ });
24
+ export const dependency = new Schema({
25
+ name: { type: 'string', required: true },
26
+ repo: { type: 'string', required: true },
27
+ branch: { type: 'string' },
28
+ builder: { type: 'array', default: [], items: { type: 'object', properties: builder.schema } },
29
+ resolver: { type: 'array', nullable: true, default: [], items: {
30
+ type: 'object', properties: pathResolverEntry.schema
31
+ }
32
+ }
33
+ });
34
+ export const npmDependencySchema = new Schema({
35
+ name: { type: 'string', required: true },
36
+ resolver: { type: 'array', nullable: true, default: [], items: {
37
+ type: 'object', properties: pathResolverEntry.schema
38
+ }
39
+ }
40
+ });
41
+ export const config = new Schema({
42
+ flowFolder: { type: 'string', default: '.depflow' },
43
+ outDir: { type: 'string', default: '.' },
44
+ tsconfig: { type: 'string', nullable: true, default: null },
45
+ importmap: { type: 'string', nullable: true, default: null },
46
+ dependencies: { type: 'array', default: [], items: { type: 'object', properties: dependency.schema } },
47
+ npmDependencies: { type: 'array', default: [], items: { type: 'object', properties: npmDependencySchema.schema } }
48
+ });
49
+ export const schemas = { basicTsconfig, config, builder, pathResolver: pathResolverEntry, dependency };
50
+ export default schemas;
51
+ //# sourceMappingURL=schemas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../src/config/schemas.ts"],"names":[],"mappings":"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"}