mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
Merge branch 'feat-new-detail-page' of github.com:verdaccio/verdaccio into feat-new-detail-page
This commit is contained in:
commit
16ae178f97
18
.github/main.workflow
vendored
Normal file
18
.github/main.workflow
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
workflow "New workflow" {
|
||||||
|
on = "push"
|
||||||
|
resolves = [
|
||||||
|
"Docker build health check",
|
||||||
|
"Test Publish Verdaccio",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
action "Docker build health check" {
|
||||||
|
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
|
||||||
|
args = "build ."
|
||||||
|
}
|
||||||
|
|
||||||
|
action "Test Publish Verdaccio" {
|
||||||
|
uses = "verdaccio/github-actions/publish@master",
|
||||||
|
needs = ["Docker build health check"]
|
||||||
|
args = "-ddd"
|
||||||
|
}
|
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@ -10,6 +10,7 @@
|
|||||||
"name": "CLI Babel Registry",
|
"name": "CLI Babel Registry",
|
||||||
"stopOnEntry": false,
|
"stopOnEntry": false,
|
||||||
"program": "${workspaceFolder}/debug/bootstrap.js",
|
"program": "${workspaceFolder}/debug/bootstrap.js",
|
||||||
|
"args": ["-l", "0.0.0.0:4873"],
|
||||||
"env": {
|
"env": {
|
||||||
"BABEL_ENV": "registry"
|
"BABEL_ENV": "registry"
|
||||||
},
|
},
|
||||||
@ -71,7 +72,8 @@
|
|||||||
"name": "Verdaccio Compiled",
|
"name": "Verdaccio Compiled",
|
||||||
"preLaunchTask": "npm: code:build",
|
"preLaunchTask": "npm: code:build",
|
||||||
"program": "${workspaceRoot}/bin/verdaccio",
|
"program": "${workspaceRoot}/bin/verdaccio",
|
||||||
|
"args": ["-l", "0.0.0.0:4873"],
|
||||||
"console": "integratedTerminal"
|
"console": "integratedTerminal"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -67,6 +67,15 @@ All notable changes to this project will be documented in this file. See [standa
|
|||||||
* verdaccio update notification on CLI ([#988](https://github.com/verdaccio/verdaccio/issues/988)) ([#998](https://github.com/verdaccio/verdaccio/issues/998)) ([bc04703](https://github.com/verdaccio/verdaccio/commit/bc04703))
|
* verdaccio update notification on CLI ([#988](https://github.com/verdaccio/verdaccio/issues/988)) ([#998](https://github.com/verdaccio/verdaccio/issues/998)) ([bc04703](https://github.com/verdaccio/verdaccio/commit/bc04703))
|
||||||
|
|
||||||
|
|
||||||
|
<a name="3.11.4"></a>
|
||||||
|
## [3.11.4](https://github.com/verdaccio/verdaccio/compare/v3.11.3...v3.11.4) (2019-02-11)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* update dependencies due to security vulnerabilities ([f6f014a](https://github.com/verdaccio/verdaccio/commit/f6f014a))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="3.11.3"></a>
|
<a name="3.11.3"></a>
|
||||||
## [3.11.3](https://github.com/verdaccio/verdaccio/compare/v3.11.2...v3.11.3) (2019-02-07)
|
## [3.11.3](https://github.com/verdaccio/verdaccio/compare/v3.11.2...v3.11.3) (2019-02-07)
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"@verdaccio/local-storage": "2.0.0-beta.1",
|
"@verdaccio/local-storage": "2.0.0-beta.1",
|
||||||
"@verdaccio/streams": "2.0.0-beta.0",
|
"@verdaccio/streams": "2.0.0-beta.0",
|
||||||
"JSONStream": "1.3.5",
|
"JSONStream": "1.3.5",
|
||||||
"async": "2.6.1",
|
"async": "3.0.1-0",
|
||||||
"body-parser": "1.18.3",
|
"body-parser": "1.18.3",
|
||||||
"bunyan": "1.8.12",
|
"bunyan": "1.8.12",
|
||||||
"chalk": "2.4.2",
|
"chalk": "2.4.2",
|
||||||
@ -177,9 +177,6 @@
|
|||||||
"npm": ">=3"
|
"npm": ">=3"
|
||||||
},
|
},
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"publishConfig": {
|
|
||||||
"registry": "https://registry.npmjs.org/"
|
|
||||||
},
|
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"
|
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"
|
||||||
|
@ -223,6 +223,14 @@ class Auth implements IAuth {
|
|||||||
}
|
}
|
||||||
|
|
||||||
apiJWTmiddleware() {
|
apiJWTmiddleware() {
|
||||||
|
const plugins = this.plugins.slice(0);
|
||||||
|
const helpers = { createAnonymousRemoteUser, createRemoteUser };
|
||||||
|
for (const plugin of plugins) {
|
||||||
|
if (plugin.apiJWTmiddleware) {
|
||||||
|
return plugin.apiJWTmiddleware(helpers);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (req: $RequestExtend, res: $Response, _next: NextFunction) => {
|
return (req: $RequestExtend, res: $Response, _next: NextFunction) => {
|
||||||
req.pause();
|
req.pause();
|
||||||
|
|
||||||
|
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in New Issue
Block a user