mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
Merge branch 'master' into 4.1.x
This commit is contained in:
commit
197095efe3
3 changed files with 12 additions and 1 deletions
|
@ -2,6 +2,15 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
# [4.0.0-beta.10](https://github.com/verdaccio/verdaccio/compare/v4.0.0-beta.9...v4.0.0-beta.10) (2019-05-20)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* add missing pkg version and name on start up ([8cf3966](https://github.com/verdaccio/verdaccio/commit/8cf3966))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [4.0.0-beta.9](https://github.com/verdaccio/verdaccio/compare/v4.0.0-beta.8...v4.0.0-beta.9) (2019-05-20)
|
# [4.0.0-beta.9](https://github.com/verdaccio/verdaccio/compare/v4.0.0-beta.8...v4.0.0-beta.9) (2019-05-20)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "verdaccio",
|
"name": "verdaccio",
|
||||||
"version": "4.0.0-beta.9",
|
"version": "4.0.0-beta.10",
|
||||||
"description": "A lightweight private npm proxy registry",
|
"description": "A lightweight private npm proxy registry",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Verdaccio Maintainers",
|
"name": "Verdaccio Maintainers",
|
||||||
|
|
|
@ -13,6 +13,8 @@ import {startVerdaccio, listenDefaultCallback} from './bootstrap';
|
||||||
import findConfigFile from './config-path';
|
import findConfigFile from './config-path';
|
||||||
import { parseConfigFile } from './utils';
|
import { parseConfigFile } from './utils';
|
||||||
|
|
||||||
|
require('pkginfo')(module);
|
||||||
|
|
||||||
if (process.getuid && process.getuid() === 0) {
|
if (process.getuid && process.getuid() === 0) {
|
||||||
global.console.warn(bgYellow('Verdaccio doesn\'t need superuser privileges. Don\'t run it under root.'));
|
global.console.warn(bgYellow('Verdaccio doesn\'t need superuser privileges. Don\'t run it under root.'));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue