@snack-uikit/skeleton 0.3.6-preview-71543426.0 → 0.4.0
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 +13 -1
- package/package.json +7 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 0.4.0 (2024-10-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **FF-5502:** add cjs build ([ffada28](https://github.com/cloud-ru-tech/snack-uikit/commit/ffada28bfdc37ea760eb1c8759342e680bdf8dd6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 0.3.5 (2024-09-23)
|
|
7
18
|
|
|
8
19
|
### Only dependencies have been changed
|
|
@@ -122,7 +133,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
122
133
|
|
|
123
134
|
## 0.1.5 (2023-07-28)
|
|
124
135
|
|
|
125
|
-
|
|
136
|
+
### Only dependencies have been changed
|
|
137
|
+
* [@snack-uikit/utils@3.5.0](https://github.com/cloud-ru-tech/snack-uikit/blob/master/packages/utils/CHANGELOG.md)
|
|
126
138
|
|
|
127
139
|
|
|
128
140
|
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"title": "Skeleton",
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.4.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"*.css",
|
|
10
10
|
"*.woff",
|
|
@@ -12,8 +12,10 @@
|
|
|
12
12
|
],
|
|
13
13
|
"description": "",
|
|
14
14
|
"types": "./dist/esm/index.d.ts",
|
|
15
|
-
"
|
|
16
|
-
|
|
15
|
+
"exports": {
|
|
16
|
+
"import": "./dist/esm/index.js",
|
|
17
|
+
"require": "./dist/cjs/index.js"
|
|
18
|
+
},
|
|
17
19
|
"homepage": "https://github.com/cloud-ru-tech/snack-uikit/tree/master/packages/skeleton",
|
|
18
20
|
"repository": {
|
|
19
21
|
"type": "git",
|
|
@@ -34,8 +36,8 @@
|
|
|
34
36
|
"license": "Apache-2.0",
|
|
35
37
|
"scripts": {},
|
|
36
38
|
"dependencies": {
|
|
37
|
-
"@snack-uikit/utils": "3.
|
|
39
|
+
"@snack-uikit/utils": "3.5.0",
|
|
38
40
|
"classnames": "2.3.2"
|
|
39
41
|
},
|
|
40
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "62cc21d8606a61a78f80e3a7455b20d6f38474fa"
|
|
41
43
|
}
|