-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: upgrde jest to v29 * fix: create react-native-reanimated patch * fix: tests * chore: fix react-native issues * test: fix react native tests * chore: fix react native tests * test: fix ProgressBar test cases * test: update snapshots * test: fix styles in snapshots * ci: enable jest sharding * test: update Tooltip snapshot * test: update Tooltip snapshot * Update .github/workflows/blade-validate.yml * chore: update snaps * chore: patch bundlemon * ci: apply patches when cache-hit * ci: apply patches when cache-hit
- Loading branch information
Showing
383 changed files
with
8,901 additions
and
7,773 deletions.
There are no files selected for viewing
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
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,5 @@ | ||
// For compatibility with jest v28+, we need to export the serializer as a function. | ||
// See https://github.com/styled-components/jest-styled-components/issues/429 | ||
const serializer = require('jest-styled-components').styleSheetSerializer; | ||
|
||
module.exports = serializer; |
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,12 @@ | ||
diff --git a/node_modules/bundlemon/lib/main/analyzer/pathUtils.js b/node_modules/bundlemon/lib/main/analyzer/pathUtils.js | ||
index e9ce416..1c41a0c 100644 | ||
--- a/node_modules/bundlemon/lib/main/analyzer/pathUtils.js | ||
+++ b/node_modules/bundlemon/lib/main/analyzer/pathUtils.js | ||
@@ -42,6 +42,7 @@ function getAllPaths(dirPath) { | ||
const files = entries.filter((file) => !file.isDirectory()).map((file) => path.join(dirPath, file.name)); | ||
const folders = entries.filter((folder) => folder.isDirectory()); | ||
for (const folder of folders) | ||
+ if (folder.name !== 'node_modules') | ||
files.push(...(yield getAllPaths(path.join(dirPath, folder.name)))); | ||
return files; | ||
}); |
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.