aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authoreleith <eleith@users.noreply.github.com>2022-10-07 22:24:44 -0700
committerGitHub <noreply@github.com>2022-10-08 13:24:44 +0800
commitbbbf9a4b938a3616e08a854c4b2639863fc54013 (patch)
tree93732db222a3dba0bce1761a4ba3057bf7b9edd9 /routers
parent6c53cf852f1b00fbcd5f641ebf4885f78cf1160c (diff)
downloadgitea-bbbf9a4b938a3616e08a854c4b2639863fc54013.tar.gz
gitea-bbbf9a4b938a3616e08a854c4b2639863fc54013.zip
npm package registry support for `bin` (#21372)
Fix #21303 npm package.json supports binary packaging: https://docs.npmjs.com/cli/v8/configuring-npm/package-json#bin the npm registry documents that the binary references will be attached to the abbreviated version object: https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md#abbreviated-version-object unfortunately their api documentation leaves this out: https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md#abbreviated-version-objectdoc which is likely to be the reason this was left out in gitea's initial implementation this response is critical for npm to install the binary in the `.bin` folder so as to be included on the users default bin path, resulting in immediate access to any binaries provided by the package
Diffstat (limited to 'routers')
-rw-r--r--routers/api/packages/npm/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/packages/npm/api.go b/routers/api/packages/npm/api.go
index d1027763a8..490387a0e4 100644
--- a/routers/api/packages/npm/api.go
+++ b/routers/api/packages/npm/api.go
@@ -67,6 +67,7 @@ func createPackageMetadataVersion(registryURL string, pd *packages_model.Package
PeerDependencies: metadata.PeerDependencies,
OptionalDependencies: metadata.OptionalDependencies,
Readme: metadata.Readme,
+ Bin: metadata.Bin,
Dist: npm_module.PackageDistribution{
Shasum: pd.Files[0].Blob.HashSHA1,
Integrity: "sha512-" + base64.StdEncoding.EncodeToString(hashBytes),