@appquality/unguess-design-system 4.0.55--canary.2ac110d.0 → 4.0.56
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 +10 -7
- package/.github/workflows/storybook.yml +4 -4
- package/.nvmrc +1 -0
- package/CHANGELOG.md +806 -0
- package/build/assets/index.css +1 -1
- package/build/index.d.ts +4370 -4106
- package/build/index.js +61828 -52611
- package/package.json +46 -48
- package/vite.config.storybook.mts +0 -1
|
@@ -10,6 +10,11 @@ on:
|
|
|
10
10
|
workflow_dispatch:
|
|
11
11
|
|
|
12
12
|
# what the action will do
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write # Required for OIDC
|
|
16
|
+
contents: write
|
|
17
|
+
|
|
13
18
|
jobs:
|
|
14
19
|
release:
|
|
15
20
|
# The operating system it will run on
|
|
@@ -21,10 +26,10 @@ jobs:
|
|
|
21
26
|
- uses: actions/checkout@v2
|
|
22
27
|
- name: Prepare repository
|
|
23
28
|
run: git fetch --unshallow --tags
|
|
24
|
-
- name: Use Node.js
|
|
29
|
+
- name: Use Node.js 24
|
|
25
30
|
uses: actions/setup-node@v2
|
|
26
31
|
with:
|
|
27
|
-
node-version: "
|
|
32
|
+
node-version: "24"
|
|
28
33
|
- name: Git Identity
|
|
29
34
|
run: |
|
|
30
35
|
git config --global user.name 'github-actions[bot]'
|
|
@@ -35,9 +40,7 @@ jobs:
|
|
|
35
40
|
- name: Create Release
|
|
36
41
|
env:
|
|
37
42
|
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}
|
|
38
|
-
#👇 npm token, see https://storybook.js.org/tutorials/design-systems-for-developers/react/en/distribute/ to obtain it
|
|
39
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
40
43
|
run: |
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
npm ci
|
|
45
|
+
npm run build
|
|
46
|
+
npm run release
|
|
@@ -19,14 +19,14 @@ jobs:
|
|
|
19
19
|
- uses: actions/checkout@v2
|
|
20
20
|
with:
|
|
21
21
|
fetch-depth: 0
|
|
22
|
-
- name: Use Node.js
|
|
22
|
+
- name: Use Node.js 24.x
|
|
23
23
|
uses: actions/setup-node@v2
|
|
24
24
|
with:
|
|
25
|
-
node-version: "
|
|
25
|
+
node-version: "24"
|
|
26
26
|
|
|
27
27
|
- name: Publish storybook
|
|
28
28
|
id: storybook
|
|
29
29
|
run: |
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
npm ci
|
|
31
|
+
npm run build
|
|
32
32
|
npx chromatic --project-token ${{ secrets.CHROMATIC_TOKEN }} --exit-zero-on-changes --ci
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v24
|