@verdaccio/types 11.0.0-6-next.22 → 11.0.0-6-next.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 11.0.0-6-next.23
4
+
5
+ ### Minor Changes
6
+
7
+ - 974cd8c1: fix: startup messages improved and logs support on types
8
+
3
9
  ## 11.0.0-6-next.22
4
10
 
5
11
  ### Minor Changes
@@ -198,6 +198,7 @@ export interface ConfigYaml {
198
198
  packages: PackageList;
199
199
  uplinks: UpLinksConfList;
200
200
  log?: LoggerConfItem;
201
+ logs?: LoggerConfItem;
201
202
  web?: WebConf;
202
203
  auth?: AuthConf;
203
204
  security: Security;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/types",
3
- "version": "11.0.0-6-next.22",
3
+ "version": "11.0.0-6-next.23",
4
4
  "description": "verdaccio types definitions",
5
5
  "keywords": [
6
6
  "private",
@@ -245,6 +245,8 @@ export interface ConfigYaml {
245
245
  packages: PackageList;
246
246
  uplinks: UpLinksConfList;
247
247
  log?: LoggerConfItem;
248
+ // @deprecated deprecation path from 5.x
249
+ logs?: LoggerConfItem;
248
250
  web?: WebConf;
249
251
  auth?: AuthConf;
250
252
  security: Security;