Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Upgrade deps #46

Merged
merged 11 commits into from
Jul 3, 2024
7 changes: 7 additions & 0 deletions .github/actions/setup-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@ runs:
using: 'composite'
steps:
- uses: pnpm/action-setup@v4
with:
run_install: false
- run: |
echo "$(pnpm config get use-node-version)"
echo "NODE_VERSION=$(pnpm config get use-node-version)" >> $GITHUB_ENV
shell: bash
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- run: pnpm i --frozen-lockfile
shell: bash
18 changes: 9 additions & 9 deletions apps/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"release": "echo \"Releasing demo app..\""
},
"devDependencies": {
"@cloudwalker/dom-utils": "*",
"@faker-js/faker": "^8.3.1",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.16",
"@vitejs/plugin-react": "^4.2.0",
"nanoid": "^5.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^5.0.2"
"@cloudwalker/dom-utils": "workspace:*",
"@faker-js/faker": "^8.4.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^5.3.2"
}
}
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "workbench",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -10,12 +11,13 @@
"coverage": "turbo run coverage",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"release": "changeset publish"
"release": "changeset publish",
"validate": "turbo run types && turbo run lint && turbo run coverage && turbo run build"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"prettier": "^3.1.0",
"turbo": "^1.10.16"
"@changesets/cli": "^2.27.7",
"prettier": "^3.3.2",
"turbo": "^2.0.6"
},
"packageManager": "pnpm@9.4.0"
}
10 changes: 5 additions & 5 deletions packages/dom-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
"types": "./dist/main.d.ts",
"sideEffects": false,
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"happy-dom": "^12.10.3",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
"@vitest/coverage-v8": "^1.6.0",
"happy-dom": "^14.12.3",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"author": {
"name": "Luca Barone",
Expand Down
40 changes: 20 additions & 20 deletions packages/react-inspect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,27 @@
"react": ">=16.8"
},
"devDependencies": {
"@cloudwalker/react-utils": "*",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.38",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@cloudwalker/react-utils": "workspace:*",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanitize.css": "^13.0.0",
"storybook": "^7.5.3",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
"storybook": "^8.1.11",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"dependencies": {
"just-is-circular": "^2.1.1"
Expand Down
10 changes: 6 additions & 4 deletions packages/react-inspect/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ export default defineConfig({
environment: 'happy-dom',
coverage: {
all: true,
functions: 50,
branches: 90,
lines: 90,
statements: 90,
include: ['src/**/*.ts', 'src/**/*.tsx'],
exclude: ['src/**/*.stories.tsx', 'src/**/testUtils.ts'],
skipFull: true,
thresholds: {
functions: 92,
branches: 91,
lines: 97,
statements: 97,
},
},
},
})
8 changes: 4 additions & 4 deletions packages/react-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"react": ">=16.8"
},
"devDependencies": {
"@types/react": "^18.2.38",
"react": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
"@types/react": "^18.3.3",
"react": "^18.3.1",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}
4 changes: 2 additions & 2 deletions packages/ts-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"url": "https://github.com/cloud-walker"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.3.2"
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions packages/ui/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
24 changes: 12 additions & 12 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
"devDependencies": {
"@pandacss/dev": "^0.18.3",
"@pandacss/types": "^0.18.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.16",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.3",
"tsup": "^8.0.1"
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.1.11",
"tsup": "^8.1.0"
}
}
Loading