@plitzi/sdk-variables 0.34.0 → 0.34.1
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/CHANGELOG.md +16 -0
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @plitzi/sdk-variables
|
|
2
2
|
|
|
3
|
+
## 0.34.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cba7b8b: Build tools no longer install with the SDK.
|
|
8
|
+
|
|
9
|
+
`@plitzi/plitzi-sdk` listed `vite`, `vite-plugin-dts` and `vite-plugin-react` as runtime dependencies, and
|
|
10
|
+
`@plitzi/sdk-variables` listed `eslint` — so every project depending on the SDK installed a bundler, a type bundler,
|
|
11
|
+
a Babel 7 toolchain and a deprecated `eslint@9` it never runs. They are build-time only: `vite` and `vite-plugin-dts`
|
|
12
|
+
move to `devDependencies`, the unused `vite-plugin-react` is removed, `@vitejs/plugin-react` (which the build
|
|
13
|
+
config does import) is now declared, and `eslint` is dropped from `sdk-variables`' runtime list.
|
|
14
|
+
|
|
15
|
+
- v0.34.1
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @plitzi/sdk-shared@0.34.1
|
|
18
|
+
|
|
3
19
|
## 0.34.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-variables",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.1",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -152,9 +152,8 @@
|
|
|
152
152
|
},
|
|
153
153
|
"dependencies": {
|
|
154
154
|
"@plitzi/plitzi-ui": "^1.6.21",
|
|
155
|
-
"@plitzi/sdk-shared": "0.34.
|
|
155
|
+
"@plitzi/sdk-shared": "0.34.1",
|
|
156
156
|
"clsx": "^2.1.1",
|
|
157
|
-
"eslint": "^9.39.5",
|
|
158
157
|
"zod": "^4.6.4"
|
|
159
158
|
},
|
|
160
159
|
"devDependencies": {
|