@seip/blue-bird 0.3.4 → 0.3.5
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/core/cli/init.js +1 -1
- package/package.json +1 -1
package/core/cli/init.js
CHANGED
|
@@ -114,7 +114,7 @@ if (command === "react") import("./react.js");
|
|
|
114
114
|
else if (command === "route") import("./route.js")
|
|
115
115
|
else if (command === "component") import("./component.js")
|
|
116
116
|
else if (command === "swagger-install") import("./swagger.js")
|
|
117
|
-
else if (command === "scaffolding-auth") import("./scaffolding-auth.js")
|
|
117
|
+
else if (command === "scaffolding-auth") import("./scaffolding-auth.js").then(m => m.default && m.default.run ? m.default.run() : null)
|
|
118
118
|
else initializer.run();
|
|
119
119
|
|
|
120
120
|
|