Skip to content

Commit

Permalink
chore: upgrade deps (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradel authored Dec 29, 2020
1 parent efd3ffe commit 682f8c3
Show file tree
Hide file tree
Showing 12 changed files with 4,312 additions and 3,095 deletions.
53 changes: 46 additions & 7 deletions .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

Large diffs are not rendered by default.

55 changes: 0 additions & 55 deletions .yarn/releases/yarn-2.3.2.cjs

This file was deleted.

55 changes: 55 additions & 0 deletions .yarn/releases/yarn-2.4.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"

yarnPath: .yarn/releases/yarn-2.3.2.cjs
yarnPath: .yarn/releases/yarn-2.4.0.cjs
1 change: 1 addition & 0 deletions examples/with-javascript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
.env.development.local
.env.test.local
.env.production.local
.eslintcache

npm-debug.log*
yarn-debug.log*
Expand Down
19 changes: 11 additions & 8 deletions examples/with-javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "5.7.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@craco/craco": "6.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"craco-esbuild": "0.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3"
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1"
},
"scripts": {
"start": "craco start",
Expand All @@ -22,7 +22,10 @@
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
Expand Down
1 change: 1 addition & 0 deletions examples/with-typescript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
.env.development.local
.env.test.local
.env.production.local
.eslintcache

npm-debug.log*
yarn-debug.log*
Expand Down
29 changes: 16 additions & 13 deletions examples/with-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "5.7.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@craco/craco": "6.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"craco-esbuild": "0.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"typescript": "~3.7.2"
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"typescript": "~4.1.3"
},
"scripts": {
"start": "craco start",
Expand All @@ -27,7 +27,10 @@
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
Expand Down
3 changes: 2 additions & 1 deletion examples/with-typescript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"include": [
"src"
Expand Down
8 changes: 4 additions & 4 deletions packages/craco-esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"react-scripts": "^3.3.0"
},
"dependencies": {
"esbuild-jest": "0.2.2",
"esbuild-loader": "^2.4.0"
"esbuild-jest": "0.3.0",
"esbuild-loader": "^2.7.0"
},
"devDependencies": {
"@craco/craco": "5.7.0",
"react-scripts": "3.4.3"
"@craco/craco": "6.0.0",
"react-scripts": "4.0.1"
}
}
Loading

0 comments on commit 682f8c3

Please sign in to comment.