@seip/blue-bird 0.9.2 → 0.9.3

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 +2 -2
  2. package/package.json +1 -1
package/core/cli/init.js CHANGED
@@ -262,8 +262,8 @@ class ProjectInit {
262
262
  pkg.scripts = pkg.scripts || {};
263
263
 
264
264
  const scriptsToAdd = {
265
- dev: "node --watch --env-file=.env index.js",
266
- start: "node --env-file=.env index.js",
265
+ dev: "node --watch --env-file=.env backend/index.js",
266
+ start: "node --env-file=.env backend/index.js",
267
267
  init: "blue-bird",
268
268
  route: "blue-bird route",
269
269
  "swagger-install": "blue-bird swagger-install",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seip/blue-bird",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Express opinionated API framework with built-in JWT auth, validation, and caching",
5
5
  "type": "module",
6
6
  "types": "core/index.d.ts",