@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.
Files changed (2) hide show
  1. package/core/cli/init.js +1 -1
  2. 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seip/blue-bird",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Express + React opinionated framework with SPA or API architecture and built-in JWT auth",
5
5
  "type": "module",
6
6
  "bin": {