Skip to content

Commit

Permalink
Update dependency esbuild to v0.25.0 (#316)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Mar 7, 2025
1 parent b98c4e6 commit 9f9eca3
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "git+https://github.com/ptrdom/scalajs-esbuild.git"
},
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"electron": "34.3.1"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "git+https://github.com/ptrdom/scalajs-esbuild.git"
},
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"electron": "34.3.1",
"playwright": "1.51.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "git+https://github.com/ptrdom/scalajs-esbuild.git"
},
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"electron-builder": "25.1.8",
"electron-chromedriver": "34.3.1",
"parse5": "7.2.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "git+https://github.com/ptrdom/scalajs-esbuild.git"
},
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"electron": "34.3.1",
"electron-builder": "25.1.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"jsdom": "26.0.0",
"lodash": "4.17.21"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"jsdom": "26.0.0",
"lodash": "4.17.21"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,17 @@ object Scripts {
|
| await ctx.watch();
|
| const { host, port } = await ctx.serve({
| const serveResult = await ctx.serve({
| servedir: outDirectory,
| port: serverPort
| });
| const port = serveResult.port;
| let host;
| if (serveResult.hosts) {
| host = serveResult.hosts[0];
| } else {
| host = serveResult.host;
| }
|
| const proxy = http.createServer((req, res) => {
| if (meta) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "0.0.0",
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"jsdom": "26.0.0",
"lodash": "4.17.21"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "0.0.0",
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"lodash": "4.17.21"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"devDependencies": {
"esbuild": "0.24.2",
"esbuild": "0.25.0",
"parse5": "7.2.1",
"lodash": "4.17.21"
}
Expand Down

0 comments on commit 9f9eca3

Please sign in to comment.