rsf-zero 0.1.4 → 0.1.6

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.
@@ -41,7 +41,7 @@ const buildStandardFiles = (actions, serverOutDir, srcDir) => {
41
41
  rootDir: srcDir,
42
42
  };
43
43
  // Generate registry ts file
44
- const registryContent = generateActionRegistryTs(actions, generatedRegistryFilePath);
44
+ const registryContent = generateActionRegistryTs(actions, tmpDir);
45
45
  fs.writeFileSync(generatedRegistryFilePath, registryContent);
46
46
  debug('wrote action registry ts file to: ' + generatedRegistryFilePath);
47
47
  // Create TypeScript program with the temporary file as entry point
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "A minimal micro-framework with React Server Functions support",
4
4
  "author": "Igor Nadj",
5
5
  "type": "module",
6
- "version": "0.1.4",
6
+ "version": "0.1.6",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/IgorNadj/rsf-zero.git",
@@ -20,8 +20,10 @@
20
20
  "@vitejs/plugin-react": "^4.3.4",
21
21
  "dotenv": "^17.2.1",
22
22
  "express": "^5.1.0",
23
+ "md5": "^2.3.0",
23
24
  "morgan": "^1.10.0",
24
25
  "superjson": "^2.2.2",
26
+ "typescript": "^5.8.3",
25
27
  "vite": "^6.3.5"
26
28
  },
27
29
  "devDependencies": {
@@ -30,8 +32,6 @@
30
32
  "@types/md5": "^2",
31
33
  "@types/morgan": "^1.9.10",
32
34
  "@types/node": "^24.1.0",
33
- "md5": "^2.3.0",
34
- "typescript": "^5.8.3",
35
35
  "vitest": "^3.2.4"
36
36
  },
37
37
  "peerDependencies": {