Skip to content

Commit

Permalink
fix: failing typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Mar 2, 2023
1 parent f31288d commit 0bfbb04
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 20 deletions.
18 changes: 9 additions & 9 deletions apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,35 +17,35 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/cli": "^7.0.0-beta.59",
"@storybook/addon-essentials": "7.0.0-beta.59",
"@storybook/addon-interactions": "7.0.0-beta.59",
"@storybook/addon-links": "7.0.0-beta.59",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-viewport": "^7.0.0-beta.59",
"@storybook/blocks": "7.0.0-beta.59",
"@storybook/cli": "^7.0.0-beta.59",
"@storybook/react": "7.0.0-beta.59",
"@storybook/react-vite": "7.0.0-beta.59",
"@storybook/testing-library": "0.0.14-next.1",
"@storybook/addon-viewport": "^7.0.0-beta.59",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@vitejs/plugin-react-swc": "3.2.0",
"@wayofdev/eslint-config-bases": "2.0.4",
"@wayofdev/postcss-config": "2.0.2",
"autoprefixer": "^10.4.13",
"eslint": "8.35.0",
"postcss": "8.4.21",
"storybook": "7.0.0-beta.59",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vite": "4.1.4",
"autoprefixer": "^10.4.13",
"postcss-100vh-fix": "^1.0.2",
"postcss-cli": "^10.1.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.0.1",
"postcss-reporter": "^7.0.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3"
"storybook": "7.0.0-beta.59",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vite": "4.1.4"
}
}
2 changes: 0 additions & 2 deletions packages/ui/lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// @ts-check

/**
* This files overrides the base lint-staged.config.js present in the root directory.
* It allows to run eslint based the package specific requirements.
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

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

13 changes: 5 additions & 8 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,8 @@
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
".next/**",
"storybook-static/**"
]
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "storybook-static/**"]
},
"test": {
"outputs": []
Expand All @@ -35,6 +29,9 @@
"lint:html": {
"outputs": []
},
"lint:types": {
"outputs": []
},
"dev": {
"cache": false
},
Expand Down

0 comments on commit 0bfbb04

Please sign in to comment.