@uniformdev/transformer 1.1.54 → 1.1.55
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/dist/cli/index.js +7 -7
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2430,7 +2430,7 @@ var ComponentAdderService = class {
|
|
|
2430
2430
|
const newInstance = this.createComponentInstance(newComponentType, parsedParams);
|
|
2431
2431
|
const compositionsResult = await this.addComponentToDirectory(
|
|
2432
2432
|
fullCompositionsDir,
|
|
2433
|
-
|
|
2433
|
+
resolvedParentTypes,
|
|
2434
2434
|
slot,
|
|
2435
2435
|
newInstance,
|
|
2436
2436
|
whatIf,
|
|
@@ -2439,7 +2439,7 @@ var ComponentAdderService = class {
|
|
|
2439
2439
|
);
|
|
2440
2440
|
const compositionPatternsResult = await this.addComponentToDirectory(
|
|
2441
2441
|
fullCompositionPatternsDir,
|
|
2442
|
-
|
|
2442
|
+
resolvedParentTypes,
|
|
2443
2443
|
slot,
|
|
2444
2444
|
newInstance,
|
|
2445
2445
|
whatIf,
|
|
@@ -2448,7 +2448,7 @@ var ComponentAdderService = class {
|
|
|
2448
2448
|
);
|
|
2449
2449
|
const componentPatternsResult = await this.addComponentToDirectory(
|
|
2450
2450
|
fullComponentPatternsDir,
|
|
2451
|
-
|
|
2451
|
+
resolvedParentTypes,
|
|
2452
2452
|
slot,
|
|
2453
2453
|
newInstance,
|
|
2454
2454
|
whatIf,
|
|
@@ -2566,7 +2566,7 @@ var ComponentAdderService = class {
|
|
|
2566
2566
|
};
|
|
2567
2567
|
const compositionsResult = await this.addComponentToDirectory(
|
|
2568
2568
|
fullCompositionsDir,
|
|
2569
|
-
|
|
2569
|
+
resolvedParentTypes,
|
|
2570
2570
|
slot,
|
|
2571
2571
|
newInstance,
|
|
2572
2572
|
whatIf,
|
|
@@ -2576,7 +2576,7 @@ var ComponentAdderService = class {
|
|
|
2576
2576
|
);
|
|
2577
2577
|
const compositionPatternsResult = await this.addComponentToDirectory(
|
|
2578
2578
|
fullCompositionPatternsDir,
|
|
2579
|
-
|
|
2579
|
+
resolvedParentTypes,
|
|
2580
2580
|
slot,
|
|
2581
2581
|
newInstance,
|
|
2582
2582
|
whatIf,
|
|
@@ -2586,7 +2586,7 @@ var ComponentAdderService = class {
|
|
|
2586
2586
|
);
|
|
2587
2587
|
const componentPatternsResult = await this.addComponentToDirectory(
|
|
2588
2588
|
fullComponentPatternsDir,
|
|
2589
|
-
|
|
2589
|
+
resolvedParentTypes,
|
|
2590
2590
|
slot,
|
|
2591
2591
|
newInstance,
|
|
2592
2592
|
whatIf,
|