Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/ci_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "24"
registry-url: "https://registry.npmjs.org"
cache: "npm"
- name: Cache dependencies
Expand Down
6 changes: 4 additions & 2 deletions config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ module.exports = {
(config) => {
config.ignoreWarnings = [
/Failed to parse source map/,
/Critical dependency: Accessing import\.meta directly is unsupported \(only property access or destructuring is supported\)/
/Critical dependency: Accessing import\.meta directly is unsupported \(only property access or destructuring is supported\)/,
/Critical dependency: 'import\.meta' cannot be used as a standalone expression\./
];
return config;
},
Expand All @@ -33,7 +34,8 @@ module.exports = {
constants: require.resolve("constants-browserify"),
fs: require.resolve("browserify-fs"),
assert: require.resolve("assert"),
buffer: require.resolve("buffer")
buffer: require.resolve("buffer"),
vm: require.resolve("vm-browserify")
}
}),
// Work around for Buffer is undefined:
Expand Down
Loading
Loading