Skip to content

Commit

Permalink
Update eslint and eslint-config-prettier versions
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergonz committed Dec 2, 2023
1 parent 6caca34 commit b5162f7
Show file tree
Hide file tree
Showing 5 changed files with 2,216 additions and 1,581 deletions.
2 changes: 1 addition & 1 deletion apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@docusaurus/module-type-aliases": "^2.4.3",
"@svgr/webpack": "^8.1.0",
"@tsconfig/docusaurus": "^2.0.2",
"@types/react": "^18.2.39",
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.7",
"raw-loader": "^4.0.2",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
],
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"netlify-cli": "^17.8.1",
"prettier": "^3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,23 +72,23 @@
"@babel/plugin-proposal-decorators": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@swc/core": "^1.3.99",
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/node": "^20.10.2",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"mobx": "^6.12.0",
"mobx-v4": "npm:mobx@^4.15.7",
"mobx-v5": "npm:mobx@^5.15.7",
"rollup-plugin-typescript2": "^0.36.0",
"shx": "^0.3.4",
"spec.ts": "^1.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.2",
"vite": "^5.0.4"
"vite": "^5.0.4",
"vite-plugin-checker": "^0.6.2"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
Expand Down
12 changes: 4 additions & 8 deletions packages/lib/vite.config.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from "path"
import typescript2 from "rollup-plugin-typescript2"
import { checker } from "vite-plugin-checker"
import { defineConfig } from "vite"

const resolvePath = (str: string) => path.resolve(__dirname, str)
Expand Down Expand Up @@ -33,12 +33,8 @@ export default defineConfig({
},
},
plugins: [
{
...typescript2({
useTsconfigDeclarationDir: true,
}),
apply: "build",
enforce: "pre",
},
checker({
typescript: true,
}),
],
})
Loading

0 comments on commit b5162f7

Please sign in to comment.