Skip to content

Commit

Permalink
Upgrade node versions, remove side effect, use named exports
Browse files Browse the repository at this point in the history
  • Loading branch information
melvin-chen committed Feb 28, 2024
1 parent 638b378 commit bcf2cf1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/storybook-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ jobs:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3.0.0
with:
version: 7
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: 18.x
- name: Install dependencies
run: pnpm install
- name: Install Playwright
Expand Down
2 changes: 1 addition & 1 deletion packages/nuka/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"url": "https://github.com/FormidableLabs/nuka-carousel/issues"
},
"homepage": "https://github.com/FormidableLabs/nuka-carousel",
"sideEffects": true,
"sideEffects": false,
"publishConfig": {
"provenance": true
}
Expand Down
2 changes: 1 addition & 1 deletion packages/nuka/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { Carousel as default, SlideHandle } from './Carousel/Carousel';
export { Carousel, SlideHandle } from './Carousel/Carousel';

0 comments on commit bcf2cf1

Please sign in to comment.