mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-03-18 02:22:46 -05:00
fix(core/hooks/mock/node-api): add missing core-js dep (#2418)
This commit is contained in:
parent
af035e4f87
commit
df0da3d699
8 changed files with 318 additions and 226 deletions
10
.changeset/proud-jeans-walk.md
Normal file
10
.changeset/proud-jeans-walk.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
'verdaccio-htpasswd': patch
|
||||
'@verdaccio/local-storage': patch
|
||||
'@verdaccio/fastify-migration': patch
|
||||
'@verdaccio/hooks': patch
|
||||
'@verdaccio/mock': patch
|
||||
'@verdaccio/node-api': patch
|
||||
---
|
||||
|
||||
Added core-js missing from dependencies though referenced in .js sources
|
|
@ -38,6 +38,7 @@
|
|||
"@verdaccio/file-locking": "workspace:11.0.0-alpha.3",
|
||||
"apache-md5": "1.1.7",
|
||||
"bcryptjs": "2.4.3",
|
||||
"core-js": "3.16.4",
|
||||
"http-errors": "1.8.0",
|
||||
"unix-crypt-td-js": "1.1.4"
|
||||
},
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
"@verdaccio/file-locking": "workspace:11.0.0-alpha.3",
|
||||
"@verdaccio/streams": "workspace:11.0.0-alpha.3",
|
||||
"async": "3.2.1",
|
||||
"core-js": "3.16.4",
|
||||
"debug": "4.3.2",
|
||||
"lodash": "4.17.21",
|
||||
"lowdb": "1.0.0"
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
"@verdaccio/auth": "workspace:6.0.0-6-next.9",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.4",
|
||||
"@verdaccio/store": "workspace:6.0.0-6-next.10",
|
||||
"core-js": "3.16.4",
|
||||
"debug": "4.3.2",
|
||||
"fastify": "3.20.2",
|
||||
"fastify-plugin": "3.0.0"
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
"dependencies": {
|
||||
"@verdaccio/commons-api": "workspace:11.0.0-alpha.3",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.4",
|
||||
"core-js": "3.16.4",
|
||||
"debug": "4.3.2",
|
||||
"handlebars": "4.7.7",
|
||||
"undici": "4.5.1",
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
"@verdaccio/commons-api": "workspace:11.0.0-alpha.3",
|
||||
"@verdaccio/config": "workspace:6.0.0-6-next.7",
|
||||
"@verdaccio/utils": "workspace:6.0.0-6-next.5",
|
||||
"core-js": "3.16.4",
|
||||
"debug": "4.3.2",
|
||||
"fs-extra": "10.0.0",
|
||||
"lodash": "4.17.21",
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
"@verdaccio/config": "workspace:6.0.0-6-next.7",
|
||||
"@verdaccio/logger": "workspace:6.0.0-6-next.4",
|
||||
"@verdaccio/server": "workspace:6.0.0-6-next.17",
|
||||
"core-js": "3.16.4",
|
||||
"debug": "4.3.2",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
|
|
528
pnpm-lock.yaml
generated
528
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue