mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
37274e4c8d
* feat: implement abbreviated manifest * chore: add time field * chore: add abbreviated version * chore: fix missing time * chore: fix merge time issue * Update jest.config.js * add tests * chore: add tests * chore: add missing fields
29 lines
811 B
Markdown
29 lines
811 B
Markdown
---
|
|
'@verdaccio/api': minor
|
|
'@verdaccio/types': minor
|
|
'@verdaccio/local-storage': minor
|
|
'@verdaccio/server-fastify': minor
|
|
'@verdaccio/store': minor
|
|
'@verdaccio/test-helper': minor
|
|
'@verdaccio/web': minor
|
|
---
|
|
|
|
feat: implement abbreviated manifest
|
|
|
|
Enable abbreviated manifest data by adding the header:
|
|
|
|
```
|
|
curl -H "Accept: application/vnd.npm.install-v1+json" https://registry.npmjs.org/verdaccio
|
|
```
|
|
|
|
It returns a filtered manifest, additionally includes the [time](https://github.com/pnpm/rfcs/pull/2) field by request.
|
|
|
|
Current support for packages managers:
|
|
|
|
- npm: yes
|
|
- pnpm: yes
|
|
- yarn classic: yes
|
|
- yarn modern (+2.x): [no](https://github.com/yarnpkg/berry/pull/3981#issuecomment-1076566096)
|
|
|
|
https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md#abbreviated-metadata-format
|