@appquality/unguess-design-system 3.0.4-alpha → 3.0.4
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/.github/workflows/release.yml +4 -4
- package/.github/workflows/storybook.yml +2 -2
- package/CHANGELOG.md +3226 -0
- package/README.md +73 -0
- package/build/index.js +341 -382
- package/package.json +4 -3
- package/.babelrc.json +0 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appquality/unguess-design-system",
|
|
3
|
-
"version": "3.0.4
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"storybook": "storybook dev -p 6006",
|
|
10
10
|
"build-storybook": "storybook build",
|
|
11
11
|
"build": "yarn run clean && rollup -c",
|
|
12
|
-
"clean": "rimraf build"
|
|
12
|
+
"clean": "rimraf build",
|
|
13
|
+
"release": "npx auto shipit --base-branch=master",
|
|
14
|
+
"type:check": "tsc"
|
|
13
15
|
},
|
|
14
16
|
"repository": {
|
|
15
17
|
"type": "git",
|
|
@@ -57,7 +59,6 @@
|
|
|
57
59
|
"@zendeskgarden/react-tooltips": "^8.49.0",
|
|
58
60
|
"@zendeskgarden/react-typography": "^8.49.0",
|
|
59
61
|
"react-slick": "^0.29.0",
|
|
60
|
-
"react-spring": "^9.4.4",
|
|
61
62
|
"react-window": "^1.8.6",
|
|
62
63
|
"ua-parser-js": "^1.0.2"
|
|
63
64
|
},
|