-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support semver versioning URL (#875)
* Update go mod * Redirect semver urls for deno * Update testings
- Loading branch information
Showing
15 changed files
with
545 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
module github.com/esm-dev/esm.sh | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
toolchain go1.22.3 | ||
|
||
require ( | ||
github.com/Masterminds/semver/v3 v3.2.1 | ||
github.com/Masterminds/semver/v3 v3.3.0 | ||
github.com/evanw/esbuild v0.23.1 | ||
github.com/ije/esbuild-internal v0.23.1 | ||
github.com/ije/gox v0.6.2 | ||
github.com/ije/rex v1.11.0 | ||
github.com/ije/gox v0.6.3 | ||
github.com/ije/rex v1.11.2 | ||
github.com/mileusna/useragent v1.3.4 | ||
go.etcd.io/bbolt v1.3.10 | ||
go.etcd.io/bbolt v1.3.11 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/rs/cors v1.11.0 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.