@furystack/shades 11.0.33 → 11.0.35
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 +12 -0
- package/package.json +15 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [11.0.35] - 2026-01-26
|
|
4
|
+
|
|
5
|
+
### 🔧 Chores
|
|
6
|
+
|
|
7
|
+
- Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
|
|
8
|
+
|
|
9
|
+
## [11.0.34] - 2026-01-26
|
|
10
|
+
|
|
11
|
+
### ⬆️ Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated `@furystack/inject` with fix for singleton injector reference being overwritten by child injectors
|
|
14
|
+
|
|
3
15
|
## [11.0.33] - 2026-01-22
|
|
4
16
|
|
|
5
17
|
### ⬆️ Dependencies
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@furystack/shades",
|
|
3
|
-
"version": "11.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "11.0.35",
|
|
4
|
+
"description": "A lightweight UI framework for FuryStack with JSX support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build
|
|
7
|
+
"build": "tsc --outDir ./esm"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./esm/index.d.ts",
|
|
11
12
|
"import": "./esm/index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
15
16
|
"esm",
|
|
16
|
-
"types",
|
|
17
17
|
"src"
|
|
18
18
|
],
|
|
19
19
|
"repository": {
|
|
@@ -25,12 +25,14 @@
|
|
|
25
25
|
"Shades",
|
|
26
26
|
"UI",
|
|
27
27
|
"JSX",
|
|
28
|
-
"
|
|
28
|
+
"frontend",
|
|
29
|
+
"framework",
|
|
30
|
+
"components"
|
|
29
31
|
],
|
|
30
32
|
"publishConfig": {
|
|
31
33
|
"access": "public"
|
|
32
34
|
},
|
|
33
|
-
"author": "gallay.lajos@gmail.com",
|
|
35
|
+
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
|
|
34
36
|
"license": "GPL-2.0",
|
|
35
37
|
"bugs": {
|
|
36
38
|
"url": "https://github.com/furystack/furystack/issues"
|
|
@@ -44,11 +46,14 @@
|
|
|
44
46
|
"vitest": "^4.0.17"
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
|
-
"@furystack/inject": "^12.0.
|
|
48
|
-
"@furystack/rest": "^8.0.
|
|
49
|
-
"@furystack/utils": "^8.1.
|
|
49
|
+
"@furystack/inject": "^12.0.28",
|
|
50
|
+
"@furystack/rest": "^8.0.34",
|
|
51
|
+
"@furystack/utils": "^8.1.9",
|
|
50
52
|
"path-to-regexp": "^8.3.0",
|
|
51
53
|
"semaphore-async-await": "^1.5.1"
|
|
52
54
|
},
|
|
53
|
-
"
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22.0.0"
|
|
57
|
+
},
|
|
58
|
+
"sideEffects": false
|
|
54
59
|
}
|