@seip/blue-bird 0.9.2 → 0.9.4

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 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/docker/Dockerfile CHANGED
@@ -12,5 +12,5 @@ COPY . .
12
12
 
13
13
  EXPOSE 3000
14
14
 
15
- CMD ["sh", "-c", "pm2-runtime start index.js -i ${PM2_INSTANCES:-1}"]
15
+ CMD ["sh", "-c", "pm2-runtime start backend/index.js -i ${PM2_INSTANCES:-1}"]
16
16
 
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.4",
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",