Skip to content

Commit

Permalink
Bump esbuild from 0.23.0 to 0.23.1 (#904)
Browse files Browse the repository at this point in the history
* Bump esbuild from 0.23.0 to 0.23.1

Bumps [esbuild](https://github.com/evanw/esbuild) from 0.23.0 to 0.23.1.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.0...v0.23.1)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* `makers setup && makers check`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenichi Kamiya <[email protected]>
  • Loading branch information
dependabot[bot] and kachick authored Aug 20, 2024
1 parent 7ae36c7 commit ab8e117
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 78 deletions.
16 changes: 16 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2252,6 +2252,7 @@ var require_decodeText = __commonJS({
return decoders.utf8;
case "latin1":
case "ascii":
// TODO: Make these a separate, strict decoder?
case "us-ascii":
case "iso-8859-1":
case "iso8859-1":
Expand Down Expand Up @@ -2951,6 +2952,7 @@ var require_basename = __commonJS({
for (var i2 = path.length - 1; i2 >= 0; --i2) {
switch (path.charCodeAt(i2)) {
case 47:
// '/'
case 92:
path = path.slice(i2 + 1);
return path === ".." || path === "." ? "" : path;
Expand Down Expand Up @@ -4185,7 +4187,21 @@ var require_util2 = __commonJS({
return referrerOrigin;
}
case "strict-origin":
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
case "no-referrer-when-downgrade":
// eslint-disable-line
/**
* 1. If referrerURL is a potentially trustworthy URL and
* request’s current URL is not a potentially trustworthy URL,
* then return no referrer.
* 2. Return referrerOrigin
*/
default:
return isNonPotentiallyTrustWorthy ? "no-referrer" : referrerOrigin;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.16.1",
"esbuild": "0.23.0",
"esbuild": "0.23.1",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
}
Expand Down
154 changes: 77 additions & 77 deletions pnpm-lock.yaml

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

0 comments on commit ab8e117

Please sign in to comment.