niuma-ui 1.1.5 → 1.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.
- package/CHANGELOG.md +8 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.1.6] - 2026-08-20
|
|
10
|
+
|
|
11
|
+
### 变更
|
|
12
|
+
|
|
13
|
+
- `package.json` 增加 `sideEffects`(仅 CSS):宿主从入口 barrel 按需导入时,可摇掉未使用的 Monaco / Terminal / CodeMirror。按文档具名导入并引入 `niuma-ui/styles.css` 的用法不受影响。
|
|
14
|
+
|
|
9
15
|
## [1.1.5] - 2026-08-19
|
|
10
16
|
|
|
11
17
|
### 修复
|
|
@@ -153,7 +159,8 @@
|
|
|
153
159
|
|
|
154
160
|
- 1.0 之前的私有 tag(如 `v0.1.0`)仅作历史记录;新接入请依赖 `v1.0.0` 及之后版本。
|
|
155
161
|
|
|
156
|
-
[Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.
|
|
162
|
+
[Unreleased]: https://github.com/Blair-Shang/niuma-ui/compare/v1.1.6...HEAD
|
|
163
|
+
[1.1.6]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.6
|
|
157
164
|
[1.1.5]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.5
|
|
158
165
|
[1.1.4]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.4
|
|
159
166
|
[1.1.3]: https://github.com/Blair-Shang/niuma-ui/releases/tag/v1.1.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "niuma-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Vue 3 设计系统与 Rs* 组件库(--rs-* token)",
|
|
@@ -44,6 +44,10 @@
|
|
|
44
44
|
"README.en.md",
|
|
45
45
|
"CHANGELOG.md"
|
|
46
46
|
],
|
|
47
|
+
"sideEffects": [
|
|
48
|
+
"**/*.css",
|
|
49
|
+
"**/*.scss"
|
|
50
|
+
],
|
|
47
51
|
"peerDependencies": {
|
|
48
52
|
"vue": "^3.5.39"
|
|
49
53
|
},
|