polylith 0.1.37 → 0.1.38
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/bin/polylith.js +2 -2
- package/package.json +1 -1
package/bin/polylith.js
CHANGED
|
@@ -393,7 +393,7 @@ function checkLocalPolylith() {
|
|
|
393
393
|
/**
|
|
394
394
|
* Call this function to execure the command from the command line
|
|
395
395
|
*/
|
|
396
|
-
async function
|
|
396
|
+
async function execute() {
|
|
397
397
|
await getOptions();
|
|
398
398
|
var config = await readConfig();
|
|
399
399
|
|
|
@@ -445,4 +445,4 @@ async function run() {
|
|
|
445
445
|
}
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
-
await
|
|
448
|
+
await execute();
|