@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
|
@@ -21,10 +21,10 @@ jobs:
|
|
|
21
21
|
- uses: actions/checkout@v2
|
|
22
22
|
- name: Prepare repository
|
|
23
23
|
run: git fetch --unshallow --tags
|
|
24
|
-
- name: Use Node.js
|
|
25
|
-
uses: actions/setup-node@
|
|
24
|
+
- name: Use Node.js 16.x
|
|
25
|
+
uses: actions/setup-node@v2
|
|
26
26
|
with:
|
|
27
|
-
node-version:
|
|
27
|
+
node-version: "16"
|
|
28
28
|
- name: Cache node modules
|
|
29
29
|
uses: actions/cache@v1
|
|
30
30
|
with:
|
|
@@ -40,4 +40,4 @@ jobs:
|
|
|
40
40
|
run: |
|
|
41
41
|
yarn install --frozen-lockfile
|
|
42
42
|
yarn build
|
|
43
|
-
yarn release
|
|
43
|
+
yarn release
|
|
@@ -24,10 +24,10 @@ jobs:
|
|
|
24
24
|
- uses: actions/checkout@v2
|
|
25
25
|
with:
|
|
26
26
|
fetch-depth: 0
|
|
27
|
-
- name: Use Node.js
|
|
27
|
+
- name: Use Node.js 16.x
|
|
28
28
|
uses: actions/setup-node@v2
|
|
29
29
|
with:
|
|
30
|
-
node-version: "
|
|
30
|
+
node-version: "16"
|
|
31
31
|
|
|
32
32
|
- name: Publish storybook
|
|
33
33
|
id: storybook
|