vaultfs 1.0.4 → 1.0.5
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/bin/postinstall.js +1 -1
- package/frontend/package.json +4 -4
- package/package.json +1 -1
- package/version.txt +1 -1
package/bin/postinstall.js
CHANGED
|
@@ -98,7 +98,7 @@ try {
|
|
|
98
98
|
// ─── Build frontend ────────────────────────────────────────
|
|
99
99
|
info("Installing frontend dependencies...");
|
|
100
100
|
const frontendDir = path.join(installDir, "frontend");
|
|
101
|
-
execSync(`${npmCmd} install --prefer-offline`, {
|
|
101
|
+
execSync(`${npmCmd} install --include=dev --prefer-offline`, {
|
|
102
102
|
cwd: frontendDir,
|
|
103
103
|
stdio: "inherit",
|
|
104
104
|
shell: true
|
package/frontend/package.json
CHANGED
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"firebase": "^12.11.0",
|
|
14
14
|
"react": "^19.2.4",
|
|
15
|
-
"react-dom": "^19.2.4"
|
|
15
|
+
"react-dom": "^19.2.4",
|
|
16
|
+
"vite": "^8.0.1",
|
|
17
|
+
"@vitejs/plugin-react": "^6.0.1"
|
|
16
18
|
},
|
|
17
19
|
"devDependencies": {
|
|
18
20
|
"@eslint/js": "^9.39.4",
|
|
19
21
|
"@types/react": "^19.2.14",
|
|
20
22
|
"@types/react-dom": "^19.2.3",
|
|
21
|
-
"@vitejs/plugin-react": "^6.0.1",
|
|
22
23
|
"eslint": "^9.39.4",
|
|
23
24
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
24
25
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
25
|
-
"globals": "^17.4.0"
|
|
26
|
-
"vite": "^8.0.1"
|
|
26
|
+
"globals": "^17.4.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/package.json
CHANGED
package/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.5
|