@live-change/db-server 0.9.101 → 0.9.102
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/Dockerfile +1 -1
- package/package.json +18 -15
package/Dockerfile
CHANGED
|
@@ -20,7 +20,7 @@ RUN mkdir -p /app
|
|
|
20
20
|
WORKDIR /app
|
|
21
21
|
COPY package.json package.json
|
|
22
22
|
#RUN --mount=type=secret,id=npmrc,target=/root/.npmrc yarn install --verbose --network-timeout 36000000
|
|
23
|
-
RUN --mount=type=cache,id=npmrc,target=/app/node_modules; yarn install --frozen-
|
|
23
|
+
RUN --mount=type=cache,id=npmrc,target=/app/node_modules; yarn install --frozen-lockfile --verbose --network-timeout 36000000
|
|
24
24
|
RUN cd node_modules/@live-change/db-admin/; npm run build
|
|
25
25
|
COPY /bin bin
|
|
26
26
|
COPY /lib lib
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db-server",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.102",
|
|
4
4
|
"description": "Database with observable data for live queries",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,22 +28,25 @@
|
|
|
28
28
|
"homepage": "https://github.com/live-change/live-change-stack",
|
|
29
29
|
"type": "module",
|
|
30
30
|
"devDependencies": {
|
|
31
|
+
"@vitejs/plugin-vue": "^5.0.5",
|
|
31
32
|
"copyfiles": "^2.4.1",
|
|
32
|
-
"tape": "^5.7.4"
|
|
33
|
+
"tape": "^5.7.4",
|
|
34
|
+
"vite-plugin-compression": "^0.5.1",
|
|
35
|
+
"vite-plugin-vue-images": "^0.6.1"
|
|
33
36
|
},
|
|
34
37
|
"dependencies": {
|
|
35
|
-
"@live-change/dao": "^0.9.
|
|
36
|
-
"@live-change/dao-message": "^0.9.
|
|
37
|
-
"@live-change/dao-sockjs": "^0.9.
|
|
38
|
-
"@live-change/dao-websocket": "^0.9.
|
|
39
|
-
"@live-change/db": "^0.9.
|
|
40
|
-
"@live-change/db-admin": "^0.9.
|
|
41
|
-
"@live-change/db-client": "^0.9.
|
|
42
|
-
"@live-change/db-store-level": "^0.9.
|
|
43
|
-
"@live-change/db-store-lmdb": "^0.9.
|
|
44
|
-
"@live-change/db-store-observable-db": "^0.9.
|
|
45
|
-
"@live-change/db-store-rbtree": "^0.9.
|
|
46
|
-
"@live-change/server": "^0.9.
|
|
38
|
+
"@live-change/dao": "^0.9.102",
|
|
39
|
+
"@live-change/dao-message": "^0.9.102",
|
|
40
|
+
"@live-change/dao-sockjs": "^0.9.102",
|
|
41
|
+
"@live-change/dao-websocket": "^0.9.102",
|
|
42
|
+
"@live-change/db": "^0.9.102",
|
|
43
|
+
"@live-change/db-admin": "^0.9.102",
|
|
44
|
+
"@live-change/db-client": "^0.9.102",
|
|
45
|
+
"@live-change/db-store-level": "^0.9.102",
|
|
46
|
+
"@live-change/db-store-lmdb": "^0.9.102",
|
|
47
|
+
"@live-change/db-store-observable-db": "^0.9.102",
|
|
48
|
+
"@live-change/db-store-rbtree": "^0.9.102",
|
|
49
|
+
"@live-change/server": "^0.9.102",
|
|
47
50
|
"@live-change/sockjs": "0.4.1",
|
|
48
51
|
"@tailwindcss/vite": "^4.1.0",
|
|
49
52
|
"express": "^4.18.2",
|
|
@@ -53,5 +56,5 @@
|
|
|
53
56
|
"websocket": "^1.0.34",
|
|
54
57
|
"yargs": "^17.7.2"
|
|
55
58
|
},
|
|
56
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "f6ae0458039c44025c609e2427e9c61bc4c4c7ec"
|
|
57
60
|
}
|