forked from emotion-js/emotion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into let-styledopts-arg-be-optional
- Loading branch information
Showing
87 changed files
with
1,164 additions
and
1,185 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const baseConfig = require('./jest.config.js') | ||
|
||
module.exports = Object.assign({}, baseConfig, { | ||
moduleNameMapper: { | ||
'^react($|\\/.+)': 'react18$1', | ||
'^react-dom($|\\/.+)': 'react18-dom$1', | ||
'^react-test-renderer($|\\/.+)': 'react18-test-renderer$1' | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,10 @@ | |
"test:size": "npm-run-all build size", | ||
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch", | ||
"test": "jest", | ||
"test:react18": "jest -c jest-react18.config.js", | ||
"test:typescript": "yarn workspaces run test:typescript", | ||
"coverage": "jest --coverage --no-cache --ci --runInBand", | ||
"test:ci": "jest --coverage --no-cache --ci --runInBand", | ||
"test:react18:ci": "yarn test:react18 --coverage --no-cache --ci --runInBand", | ||
"test:prod": "yarn build && jest -c jest.dist.js --no-cache --ci --runInBand", | ||
"lint:check": "eslint .", | ||
"test:watch": "jest --watch", | ||
|
@@ -193,7 +195,7 @@ | |
"@mdx-js/mdx": "^1.6.22", | ||
"@mdx-js/react": "^1.6.22", | ||
"@preconstruct/cli": "1.1.34", | ||
"@testing-library/react": "^12.1.2", | ||
"@testing-library/react": "13.0.0-alpha.5", | ||
"@types/jest": "^27.0.3", | ||
"@types/node": "^10.11.4", | ||
"@types/react": "^16.9.11", | ||
|
@@ -211,7 +213,7 @@ | |
"bundlesize": "^0.13.2", | ||
"codecov": "^2.3.1", | ||
"cssjanus": "^1.2.0", | ||
"dtslint": "^0.3.0", | ||
"dtslint": "^4.2.1", | ||
"enzyme": "^3.11.0", | ||
"enzyme-adapter-react-16": "^1.15.5", | ||
"enzyme-to-json": "^3.6.1", | ||
|
@@ -237,7 +239,6 @@ | |
"jest-junit": "^13.0.0", | ||
"jest-serializer-html": "^7.1.0", | ||
"jest-watch-typeahead": "^1.0.0", | ||
"jsdom": "^16.6.0", | ||
"lint-staged": "^7.2.0", | ||
"module-alias": "^2.0.1", | ||
"multipipe": "^1.0.2", | ||
|
@@ -257,8 +258,9 @@ | |
"react-primitives": "^0.8.1", | ||
"react-router-dom": "^4.2.2", | ||
"react-test-renderer": "16.8.6", | ||
"react18": "npm:react@alpha", | ||
"react18-dom": "npm:react-dom@alpha", | ||
"react18": "npm:[email protected]", | ||
"react18-dom": "npm:[email protected]", | ||
"react18-test-renderer": "npm:[email protected]", | ||
"svg-tag-names": "^1.1.1", | ||
"through": "^2.3.8", | ||
"unified": "^6.1.6", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.