Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(build): uplift several outdated frontend packages #29652

Merged
merged 22 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
06e8de4
chore(build): remove unused `babel-jest`, `transform-loader` + uplift…
hainenber Jul 21, 2024
2ecf54e
chore(build): exclude ESM-compatible modules from being transformed i…
hainenber Jul 21, 2024
d5737f9
chore(sql_lab/components): refactor SchedulerQueryButton for `react-j…
hainenber Jul 21, 2024
69c25fe
chore(middleware): refactor logger test file to be compatible to `sin…
hainenber Jul 21, 2024
1cd58e1
fix(ci): downgrade `fetch-mock` to previous version to prevent instab…
hainenber Jul 21, 2024
a177d64
chore(build): bump major version for Webpack loaders and `history`, m…
hainenber Jul 28, 2024
44c4b55
chore(build): uplift minor version of Prettier
hainenber Jul 28, 2024
d3d4707
chore(scripts): use exported function for Rimraf's sync
hainenber Jul 28, 2024
23198b3
fix(ci): fix Prettier issues after upgrade
hainenber Jul 28, 2024
d2d600d
feat(build): reduce total package count by upgrading to Lerna v8.1.7
hainenber Jul 28, 2024
36efcf1
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Jul 28, 2024
e271643
chore(ci): fix Prettier issue after merging master
hainenber Jul 28, 2024
8911f8b
fix(ci): explicitly declare Prettier version in pre-commit
hainenber Jul 28, 2024
b10e390
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Aug 1, 2024
af7b370
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Aug 1, 2024
446d6c1
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Aug 2, 2024
2e3c86a
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Aug 3, 2024
91f0de9
fix(ci): sync lockfile back to v2
hainenber Aug 3, 2024
390c1ba
chore: run npm audit to fix 2 High vulns
hainenber Aug 3, 2024
adf3ce4
chore(build-deps): pin main Storybook to exact 8.1.11
hainenber Aug 3, 2024
dbeeaca
Merge branch 'master' into uplift-outdated-frontend-packages
hainenber Aug 6, 2024
95533ac
fix(ci): revert FE's lockfile to v2
hainenber Aug 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ repos:
rev: v3.1.0 # Use the sha or tag you want to point at
hooks:
- id: prettier
additional_dependencies:
- [email protected]
args: ["--ignore-path=./superset-frontend/.prettierignore"]
files: "superset-frontend"
# blacklist unsafe functions like make_url (see #19526)
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = {
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
snapshotSerializers: ['@emotion/jest/enzyme-serializer'],
transformIgnorePatterns: [
'node_modules/(?!d3-(interpolate|color)|remark-gfm|markdown-table|micromark-*.|decode-named-character-reference|character-entities|mdast-util-*.|unist-util-*.|ccount|escape-string-regexp|nanoid)',
'node_modules/(?!d3-(interpolate|color)|remark-gfm|markdown-table|micromark-*.|decode-named-character-reference|character-entities|mdast-util-*.|unist-util-*.|ccount|escape-string-regexp|nanoid|@rjsf/*.|sinon)',
],
globals: {
__DEV__: true,
Expand Down
Loading
Loading