Skip to content

Commit 8eec6e3

Browse files
committed
Merge branch 'beta' into next
2 parents 66d58d9 + c24c52c commit 8eec6e3

7 files changed

Lines changed: 11 additions & 5 deletions

File tree

File renamed without changes.

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
run: yarn lint
3030
- name: Build
3131
run: yarn build
32+
3233
commitlint:
3334
if: ${{ github.event_name == 'pull_request' }}
3435
name: Lint commit messages

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: push
33

44
jobs:
55
chromatic_deployment:
6-
name: Build
6+
name: Deploy storybook to chromatic
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ jobs:
5656
- name: Install dependencies
5757
if: steps.cache.outputs.cache-hit != 'true'
5858
run: yarn install --frozen-lockfile
59+
- name: Build
60+
run: yarn build
5961
- name: Release
6062
env:
6163
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
@@ -65,6 +67,7 @@ jobs:
6567
GIT_COMMITTER_EMAIL: ${{ secrets.BUMP_GIT_EMAIL }}
6668
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
6769
run: yarn semantic-release
70+
6871
sync_main_to_beta:
6972
if: ${{ github.ref == 'refs/heads/main' }}
7073
name: Sync branch `main` to `beta` (fast-forward enabled)
@@ -78,6 +81,7 @@ jobs:
7881
git_committer_name: ${{ secrets.BUMP_GIT_NAME }}
7982
git_committer_email: ${{ secrets.BUMP_GIT_EMAIL }}
8083
github_token: ${{ secrets.GH_TOKEN }}
84+
8185
sync_beta_to_next:
8286
if: ${{ github.ref == 'refs/heads/beta' }}
8387
name: Sync branch `beta` to `next` (fast-forward enabled)
@@ -92,6 +96,7 @@ jobs:
9296
git_committer_name: ${{ secrets.BUMP_GIT_NAME }}
9397
git_committer_email: ${{ secrets.BUMP_GIT_EMAIL }}
9498
github_token: ${{ secrets.GH_TOKEN }}
99+
95100
sync_beta_to_updates:
96101
if: ${{ github.ref == 'refs/heads/beta' }}
97102
name: Sync branch `beta` to `updates` (fast-forward enabled)

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
"dist",
2727
"src"
2828
],
29-
"main": "./dist/index.umd.js",
30-
"module": "./dist/index.mjs",
29+
"main": "./dist/index.umd.cjs",
30+
"module": "./dist/index.js",
3131
"types": "./dist/index.d.ts",
3232
"exports": {
3333
".": {
34-
"import": "./dist/index.mjs",
35-
"require": "./dist/index.mjs"
34+
"import": "./dist/index.js",
35+
"require": "./dist/index.umd.cjs"
3636
},
3737
"./styles": {
3838
"default": "./dist/style.css"
File renamed without changes.

0 commit comments

Comments
 (0)