Hi,
I installed a package from my private self-hosted GitLab npm registry by creating .npmrc file
@my-private-registry:registry=https://gitlab.local/api/v4/projects/<PROJECT_ID>/packages/npm/
//gitlab.local/api/v4/projects/<PROJECT_ID>/packages/npm/:_authToken=<AUTH_TOKEN>
and by adding the package to deno.json
{
...
"imports": {
...
"@my-private-registry/my-package": "npm:@my-private-registry/my-package@^0.1.14"
}
}
and finally running deno install.
After releasing a new package version, I tried running deno outdated but noticed that the package was missing from the list:
> deno outdated
┌──────────────────────┬─────────┬────────┬────────┐
│ Package │ Current │ Update │ Latest │
├──────────────────────┼─────────┼────────┼────────┤
│ jsr:@zod/zod │ 4.3.5 │ 4.3.6 │ 4.3.6 │
├──────────────────────┼─────────┼────────┼────────┤
│ npm:@bull-board/api │ 6.16.2 │ 6.16.4 │ 6.16.4 │
├──────────────────────┼─────────┼────────┼────────┤
│ npm:@bull-board/hono │ 6.16.2 │ 6.16.4 │ 6.16.4 │
└──────────────────────┴─────────┴────────┴────────┘
Version: Deno 2.6.5
Hi,
I installed a package from my private self-hosted GitLab npm registry by creating
.npmrcfileand by adding the package to
deno.jsonand finally running
deno install.After releasing a new package version, I tried running
deno outdatedbut noticed that the package was missing from the list:Version: Deno 2.6.5