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

Upgrade browserslist and webcompat data packages #65926

Merged
merged 5 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
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
146 changes: 67 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@
"babel-plugin-react-native-platform-specific-extensions": "1.1.1",
"babel-plugin-transform-remove-console": "6.9.4",
"benchmark": "2.1.4",
"browserslist": "4.22.2",
"caniuse-lite": "1.0.30001636",
"browserslist": "4.24.0",
"caniuse-lite": "1.0.30001667",
"chalk": "4.1.1",
"change-case": "4.1.2",
"client-zip": "^2.4.5",
"commander": "9.2.0",
"concurrently": "3.5.0",
"copy-webpack-plugin": "10.2.0",
"core-js-builder": "3.35.1",
"core-js-builder": "3.38.1",
"cross-env": "3.2.4",
"css-loader": "6.2.0",
"cssnano": "6.0.1",
Expand Down Expand Up @@ -258,11 +258,11 @@
"strip-json-comments": "5.0.0",
"style-loader": "3.2.1",
"terser": "5.32.0",
"terser-webpack-plugin": "5.3.9",
"terser-webpack-plugin": "5.3.10",
"typescript": "5.5.3",
"uuid": "9.0.1",
"webdriverio": "8.16.20",
"webpack": "5.88.2",
"webpack": "5.95.0",
"webpack-bundle-analyzer": "4.9.1",
"worker-farm": "1.7.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@
"schema-utils": "^4.2.0",
"source-map-loader": "^3.0.0",
"stylelint": "^16.8.2",
"terser-webpack-plugin": "^5.3.9",
"terser-webpack-plugin": "^5.3.10",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
Expand Down
4 changes: 2 additions & 2 deletions tools/webpack/blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ const createEntrypoints = () => {
/*
* Returns an array of paths to block view files within the `@wordpress/block-library` package.
* These paths can be matched by the regex `blockViewRegex` in order to extract
* the block's filename.
* the block's filename. All blocks were migrated to script modules but the Form block.
*
* Returns an empty array if no files were found.
*/
const blockViewScriptPaths = fastGlob.sync(
'./packages/block-library/build-module/**/view*.js'
'./packages/block-library/build-module/form/view.js'
);
Comment on lines 61 to 63
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gziolo In a follow-up we can make this a viewScriptModule and remove this single case. It seems to be a single module with no dependencies, an easy migration.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it seems straightforward but I went with a quick change here to rule it out as a source of issue.


/*
Expand Down
Loading