@universal-deploy/node 0.1.1 → 0.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/dist/index.js CHANGED
@@ -1 +1 @@
1
- export { };
1
+ export {};
package/dist/serve.js CHANGED
@@ -1,7 +1,6 @@
1
1
  import userServerEntry from "virtual:ud:catch-all";
2
2
  import { assertFetchable } from "@universal-deploy/store/utils";
3
3
  import { serve } from "srvx";
4
-
5
4
  //#region src/serve.ts
6
5
  async function startServer() {
7
6
  assertFetchable(userServerEntry, "virtual:ud:catch-all");
@@ -16,6 +15,5 @@ async function startServer() {
16
15
  }).ready();
17
16
  }
18
17
  await startServer();
19
-
20
18
  //#endregion
21
- export { };
19
+ export {};
package/dist/vite.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { builtinModules } from "node:module";
2
2
  import { defaultClientConditions, defaultExternalConditions, defaultServerConditions } from "vite";
3
-
4
3
  //#region src/vite.ts
5
4
  const isBun = typeof Bun !== "undefined";
6
5
  const isDeno = typeof Deno !== "undefined";
@@ -75,6 +74,5 @@ function node(options) {
75
74
  }
76
75
  ];
77
76
  }
78
-
79
77
  //#endregion
80
- export { node };
78
+ export { node };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@universal-deploy/node",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -10,8 +10,8 @@
10
10
  "./vite": "./dist/vite.js"
11
11
  },
12
12
  "dependencies": {
13
- "srvx": "^0.10.1",
14
- "@universal-deploy/store": "^0.1.0"
13
+ "srvx": "^0.11.9",
14
+ "@universal-deploy/store": "^0.1.4"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "vite": ">=7.1"
@@ -22,10 +22,10 @@
22
22
  }
23
23
  },
24
24
  "devDependencies": {
25
- "@types/node": "^22.19.3",
26
- "tsdown": "^0.20.3",
25
+ "@types/node": "^22.19.15",
26
+ "tsdown": "^0.21.1",
27
27
  "typescript": "^5.9.3",
28
- "vite": "^8.0.0-beta.13"
28
+ "vite": "^8.0.0-beta.18"
29
29
  },
30
30
  "files": [
31
31
  "dist/"