@seip/blue-bird 1.1.1 → 1.1.2

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/docker/Dockerfile CHANGED
@@ -4,10 +4,14 @@ ENV NODE_ENV=production
4
4
 
5
5
  WORKDIR /app
6
6
 
7
+ # Install native build tools for C++ addons (better-sqlite3, bcrypt)
8
+ RUN apk add --no-cache python3 make g++
9
+
7
10
  COPY package*.json ./
8
11
 
9
12
  RUN npm ci --omit=dev && npm install -g pm2
10
13
 
14
+
11
15
  COPY . .
12
16
 
13
17
  EXPOSE 3000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seip/blue-bird",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
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",
@@ -37,7 +37,6 @@
37
37
  "docker": "node core/cli/init.js docker",
38
38
  "test": "node test/test_suite.js"
39
39
  },
40
-
41
40
  "publishConfig": {
42
41
  "access": "public"
43
42
  },
@@ -65,4 +64,4 @@
65
64
  "ws": "^8.18.0",
66
65
  "xss": "^1.0.15"
67
66
  }
68
- }
67
+ }