webstudio 0.252.1 → 0.252.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/README.md +2 -2
- package/lib/cli.js +2 -2
- package/package.json +13 -13
- package/templates/defaults/package.json +8 -8
- package/templates/react-router/package.json +8 -8
- package/templates/ssg/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,10 +16,10 @@ To install Node.js using NVM, first install NVM by running:
|
|
|
16
16
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Once NVM is installed, you can install Node.js version
|
|
19
|
+
Once NVM is installed, you can install Node.js version 22 by running:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
nvm install
|
|
22
|
+
nvm install 22
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Verify your Node.js installation by checking its version:
|
package/lib/cli.js
CHANGED
|
@@ -9035,7 +9035,7 @@ const getDeploymentInstructions = (deployTarget) => {
|
|
|
9035
9035
|
}
|
|
9036
9036
|
};
|
|
9037
9037
|
const name = "webstudio";
|
|
9038
|
-
const version = "0.252.
|
|
9038
|
+
const version = "0.252.2";
|
|
9039
9039
|
const description = "Webstudio CLI";
|
|
9040
9040
|
const author = "Webstudio <github@webstudio.is>";
|
|
9041
9041
|
const homepage = "https://webstudio.is";
|
|
@@ -9045,7 +9045,7 @@ const imports = { "#cli": { "webstudio": "./src/cli.ts", "default": "./lib/cli.j
|
|
|
9045
9045
|
const files = ["lib/*", "templates/*", "bin.js", "!*.{test,stories}.*"];
|
|
9046
9046
|
const scripts = { "typecheck": "tsgo --noEmit", "build": "rm -rf lib && vite build", "test": "vitest run" };
|
|
9047
9047
|
const license = "AGPL-3.0-or-later";
|
|
9048
|
-
const engines = { "node": ">=
|
|
9048
|
+
const engines = { "node": ">=22" };
|
|
9049
9049
|
const dependencies = { "@clack/prompts": "^0.10.0", "@emotion/hash": "^0.9.2", "acorn": "^8.14.1", "acorn-walk": "^8.3.4", "change-case": "^5.4.4", "deepmerge": "^4.3.1", "env-paths": "^3.0.0", "nanoid": "^5.1.5", "p-limit": "^6.2.0", "parse5": "7.3.0", "picocolors": "^1.1.1", "reserved-identifiers": "^1.0.0", "tinyexec": "^0.3.2", "warn-once": "^0.1.1", "yargs": "^17.7.2", "zod": "^3.24.2" };
|
|
9050
9050
|
const devDependencies = { "@cloudflare/vite-plugin": "^1.1.0", "@netlify/vite-plugin-react-router": "^1.0.1", "@react-router/dev": "^7.5.3", "@react-router/fs-routes": "^7.5.3", "@remix-run/cloudflare": "^2.16.5", "@remix-run/cloudflare-pages": "^2.16.5", "@remix-run/dev": "^2.16.5", "@remix-run/node": "^2.16.5", "@remix-run/react": "^2.16.5", "@remix-run/server-runtime": "^2.16.5", "@types/react": "^18.2.70", "@types/react-dom": "^18.2.25", "@types/yargs": "^17.0.33", "@vercel/react-router": "^1.1.0", "@vitejs/plugin-react": "^4.4.1", "@webstudio-is/css-engine": "workspace:*", "@webstudio-is/http-client": "workspace:*", "@webstudio-is/image": "workspace:*", "@webstudio-is/react-sdk": "workspace:*", "@webstudio-is/sdk": "workspace:*", "@webstudio-is/sdk-components-animation": "workspace:*", "@webstudio-is/sdk-components-react": "workspace:*", "@webstudio-is/sdk-components-react-radix": "workspace:*", "@webstudio-is/sdk-components-react-remix": "workspace:*", "@webstudio-is/sdk-components-react-router": "workspace:*", "@webstudio-is/tsconfig": "workspace:*", "h3": "^1.15.1", "ipx": "^3.0.3", "isbot": "^5.1.25", "prettier": "3.5.3", "react": "18.3.0-canary-14898b6a9-20240318", "react-dom": "18.3.0-canary-14898b6a9-20240318", "react-router": "^7.5.3", "ts-expect": "^1.3.0", "vike": "^0.4.229", "vite": "^6.3.4", "vitest": "^3.1.2", "wrangler": "^3.63.2" };
|
|
9051
9051
|
const packageJson = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webstudio",
|
|
3
|
-
"version": "0.252.
|
|
3
|
+
"version": "0.252.2",
|
|
4
4
|
"description": "Webstudio CLI",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
],
|
|
24
24
|
"license": "AGPL-3.0-or-later",
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
26
|
+
"node": ">=22"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@clack/prompts": "^0.10.0",
|
|
@@ -71,17 +71,17 @@
|
|
|
71
71
|
"vite": "^6.3.4",
|
|
72
72
|
"vitest": "^3.1.2",
|
|
73
73
|
"wrangler": "^3.63.2",
|
|
74
|
-
"@webstudio-is/
|
|
75
|
-
"@webstudio-is/
|
|
76
|
-
"@webstudio-is/image": "0.252.
|
|
77
|
-
"@webstudio-is/sdk
|
|
78
|
-
"@webstudio-is/sdk
|
|
79
|
-
"@webstudio-is/sdk": "0.252.
|
|
80
|
-
"@webstudio-is/react-
|
|
81
|
-
"@webstudio-is/sdk-components-react-
|
|
82
|
-
"@webstudio-is/sdk-components-react
|
|
83
|
-
"@webstudio-is/
|
|
84
|
-
"@webstudio-is/
|
|
74
|
+
"@webstudio-is/css-engine": "0.252.2",
|
|
75
|
+
"@webstudio-is/http-client": "0.252.2",
|
|
76
|
+
"@webstudio-is/image": "0.252.2",
|
|
77
|
+
"@webstudio-is/sdk": "0.252.2",
|
|
78
|
+
"@webstudio-is/react-sdk": "0.252.2",
|
|
79
|
+
"@webstudio-is/sdk-components-animation": "0.252.2",
|
|
80
|
+
"@webstudio-is/sdk-components-react-radix": "0.252.2",
|
|
81
|
+
"@webstudio-is/sdk-components-react-remix": "0.252.2",
|
|
82
|
+
"@webstudio-is/sdk-components-react": "0.252.2",
|
|
83
|
+
"@webstudio-is/sdk-components-react-router": "0.252.2",
|
|
84
|
+
"@webstudio-is/tsconfig": "1.0.7"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|
|
87
87
|
"typecheck": "tsgo --noEmit",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"@remix-run/node": "2.16.5",
|
|
12
12
|
"@remix-run/react": "2.16.5",
|
|
13
13
|
"@remix-run/server-runtime": "2.16.5",
|
|
14
|
-
"@webstudio-is/image": "0.252.
|
|
15
|
-
"@webstudio-is/react-sdk": "0.252.
|
|
16
|
-
"@webstudio-is/sdk": "0.252.
|
|
17
|
-
"@webstudio-is/sdk-components-react": "0.252.
|
|
18
|
-
"@webstudio-is/sdk-components-animation": "0.252.
|
|
19
|
-
"@webstudio-is/sdk-components-react-radix": "0.252.
|
|
20
|
-
"@webstudio-is/sdk-components-react-remix": "0.252.
|
|
14
|
+
"@webstudio-is/image": "0.252.2",
|
|
15
|
+
"@webstudio-is/react-sdk": "0.252.2",
|
|
16
|
+
"@webstudio-is/sdk": "0.252.2",
|
|
17
|
+
"@webstudio-is/sdk-components-react": "0.252.2",
|
|
18
|
+
"@webstudio-is/sdk-components-animation": "0.252.2",
|
|
19
|
+
"@webstudio-is/sdk-components-react-radix": "0.252.2",
|
|
20
|
+
"@webstudio-is/sdk-components-react-remix": "0.252.2",
|
|
21
21
|
"isbot": "^5.1.25",
|
|
22
22
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
23
23
|
"react-dom": "18.3.0-canary-14898b6a9-20240318"
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"vite": "^6.3.4"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=22"
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@react-router/dev": "^7.5.3",
|
|
12
12
|
"@react-router/fs-routes": "^7.5.3",
|
|
13
|
-
"@webstudio-is/image": "0.252.
|
|
14
|
-
"@webstudio-is/react-sdk": "0.252.
|
|
15
|
-
"@webstudio-is/sdk": "0.252.
|
|
16
|
-
"@webstudio-is/sdk-components-animation": "0.252.
|
|
17
|
-
"@webstudio-is/sdk-components-react-radix": "0.252.
|
|
18
|
-
"@webstudio-is/sdk-components-react-router": "0.252.
|
|
19
|
-
"@webstudio-is/sdk-components-react": "0.252.
|
|
13
|
+
"@webstudio-is/image": "0.252.2",
|
|
14
|
+
"@webstudio-is/react-sdk": "0.252.2",
|
|
15
|
+
"@webstudio-is/sdk": "0.252.2",
|
|
16
|
+
"@webstudio-is/sdk-components-animation": "0.252.2",
|
|
17
|
+
"@webstudio-is/sdk-components-react-radix": "0.252.2",
|
|
18
|
+
"@webstudio-is/sdk-components-react-router": "0.252.2",
|
|
19
|
+
"@webstudio-is/sdk-components-react": "0.252.2",
|
|
20
20
|
"isbot": "^5.1.25",
|
|
21
21
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
22
22
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"typescript": "5.8.2"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": ">=
|
|
32
|
+
"node": ">=22"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"typecheck": "tsgo --noEmit"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@webstudio-is/image": "0.252.
|
|
12
|
-
"@webstudio-is/react-sdk": "0.252.
|
|
13
|
-
"@webstudio-is/sdk": "0.252.
|
|
14
|
-
"@webstudio-is/sdk-components-react": "0.252.
|
|
15
|
-
"@webstudio-is/sdk-components-animation": "0.252.
|
|
16
|
-
"@webstudio-is/sdk-components-react-radix": "0.252.
|
|
11
|
+
"@webstudio-is/image": "0.252.2",
|
|
12
|
+
"@webstudio-is/react-sdk": "0.252.2",
|
|
13
|
+
"@webstudio-is/sdk": "0.252.2",
|
|
14
|
+
"@webstudio-is/sdk-components-react": "0.252.2",
|
|
15
|
+
"@webstudio-is/sdk-components-animation": "0.252.2",
|
|
16
|
+
"@webstudio-is/sdk-components-react-radix": "0.252.2",
|
|
17
17
|
"react": "18.3.0-canary-14898b6a9-20240318",
|
|
18
18
|
"react-dom": "18.3.0-canary-14898b6a9-20240318",
|
|
19
19
|
"vike": "^0.4.229"
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"vite": "^6.3.4"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=
|
|
29
|
+
"node": ">=22"
|
|
30
30
|
}
|
|
31
31
|
}
|