Skip to content

Commit

Permalink
Merge branch 'feat/project-update' of https://github.com/raisiqueira/…
Browse files Browse the repository at this point in the history
…headless-stepper-monorepo into feat/project-update
  • Loading branch information
raisiqueira committed May 11, 2024
2 parents c8e4a6b + a6dc4f3 commit 624a85d
Show file tree
Hide file tree
Showing 7 changed files with 3,409 additions and 3,591 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16', '18']
node: ['20']
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Install PNPM
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- run: pnpm install --frozen-lockfile

Expand Down
14 changes: 7 additions & 7 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.6.9",
"next": "13.2.4",
"next-seo": "^5.1.0",
"nextra": "^2.2.20",
"nextra-theme-docs": "^2.2.20",
"react": "18.2.0",
"react-dom": "18.2.0",
"next": "14.2.3",
"next-seo": "^6.5.0",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^4.3.1"
},
"devDependencies": {
Expand All @@ -25,6 +25,6 @@
"eslint-config-next": "12.1.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"typescript": "4.9.3"
"typescript": "5.4.5"
}
}
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
"@storybook/builder-vite": "^7.6.18",
"@storybook/core-server": "7.6.4",
"@storybook/react": "7.6.4",
"@storybook/react-vite": "^7.6.18",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "15.0.6",
"@storybook/react-vite": "^8.0.10",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "15.0.7",
"@types/node": "18.19.31",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
Expand Down Expand Up @@ -89,7 +89,7 @@
"dependencies": {
"@changesets/cli": "^2.27.1",
"core-js": "3.36.1",
"next": "^13.5.6",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tslib": "^2.6.2"
Expand All @@ -108,4 +108,3 @@
"includedScripts": []
}
}

2 changes: 1 addition & 1 deletion packages/headless-stepper/node_modules/react

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions packages/headless-stepper/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "headless-stepper",
"description": "Production ready React hook to create awesome stepper components. Effortless to use, easy to customize.",
"version": "1.10.0",
"version": "1.11.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -33,10 +33,7 @@
"typescript",
"react-hooks"
],
"files": [
"dist",
"components"
],
"files": ["dist", "components"],
"exports": {
"./package.json": "./package.json",
".": {
Expand All @@ -62,4 +59,4 @@
"publishConfig": {
"provenance": true
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import StepperComponent, { StepComponentProps } from './StepperComponent';
export default {
component: StepperComponent,
title: 'HeadlessStepper/StepperComponent',
id: 'StepperComponent',
} as Meta;

const Template: StoryFn<StepComponentProps> = (args) => (
Expand Down
Loading

0 comments on commit 624a85d

Please sign in to comment.