Skip to content

Commit

Permalink
fix: update es-module-lexer (#7050)
Browse files Browse the repository at this point in the history
* fix: update es-module-lexer

* fix: ci
  • Loading branch information
XXXMrG authored Feb 20, 2025
1 parent 7be0321 commit dcc1004
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/bundles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"cssnano": "^5.1.7",
"es-module-lexer": "0.10.5",
"es-module-lexer": "1.6.0",
"esbuild-register": "3.4.1",
"eslint": "^8.14.0",
"eslint-webpack-plugin": "3.1.1",
Expand Down
17 changes: 8 additions & 9 deletions pnpm-lock.yaml

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

6 changes: 5 additions & 1 deletion tests/utils/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ export default class Browser {
}

async start() {
this.browser = await puppeteer.launch();
this.browser = await puppeteer.launch(
{
args: ['--no-sandbox', '--disable-setuid-sandbox'],
},
);
}

async close() {
Expand Down

0 comments on commit dcc1004

Please sign in to comment.