@verdaccio/cli 6.0.0-6-next.38 → 6.0.0-6-next.48

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,27 @@
1
1
  # @verdaccio/cli
2
2
 
3
+ ## 6.0.0-6-next.48
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [43f32687]
8
+ - Updated dependencies [9fc2e796]
9
+ - Updated dependencies [62c24b63]
10
+ - @verdaccio/core@6.0.0-6-next.48
11
+ - @verdaccio/config@6.0.0-6-next.48
12
+ - @verdaccio/node-api@6.0.0-6-next.48
13
+ - @verdaccio/logger@6.0.0-6-next.16
14
+
15
+ ## 6.0.0-6-next.47
16
+
17
+ ### Patch Changes
18
+
19
+ - 020ede43: fix: version with breakline
20
+ - @verdaccio/core@6.0.0-6-next.47
21
+ - @verdaccio/config@6.0.0-6-next.47
22
+ - @verdaccio/node-api@6.0.0-6-next.47
23
+ - @verdaccio/logger@6.0.0-6-next.15
24
+
3
25
  ## 6.0.0-6-next.38
4
26
 
5
27
  ### Patch Changes
@@ -14,7 +14,7 @@ class VersionCommand extends _clipanion.Command {
14
14
  async execute() {
15
15
  const version = require('../../package.json').version;
16
16
 
17
- this.context.stdout.write(`v${version}`);
17
+ this.context.stdout.write(`v${version}\n`);
18
18
  process.exit(0);
19
19
  }
20
20
 
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","names":["VersionCommand","Command","paths","execute","version","require","context","stdout","write","process","exit"],"sources":["../../src/commands/version.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/explicit-member-accessibility */\nimport { Command } from 'clipanion';\n\nexport class VersionCommand extends Command {\n static paths = [[`--version`], [`-v`]];\n\n async execute() {\n const version = require('../../package.json').version;\n this.context.stdout.write(`v${version}`);\n process.exit(0);\n }\n}\n"],"mappings":";;;;;;;AACA;;AADA;AAGO,MAAMA,cAAN,SAA6BC,kBAA7B,CAAqC;EAC9B,OAALC,KAAK,GAAG,CAAC,CAAE,WAAF,CAAD,EAAgB,CAAE,IAAF,CAAhB,CAAH;;EAEC,MAAPC,OAAO,GAAG;IACd,MAAMC,OAAO,GAAGC,OAAO,CAAC,oBAAD,CAAP,CAA8BD,OAA9C;;IACA,KAAKE,OAAL,CAAaC,MAAb,CAAoBC,KAApB,CAA2B,IAAGJ,OAAQ,EAAtC;IACAK,OAAO,CAACC,IAAR,CAAa,CAAb;EACD;;AAPyC"}
1
+ {"version":3,"file":"version.js","names":["VersionCommand","Command","paths","execute","version","require","context","stdout","write","process","exit"],"sources":["../../src/commands/version.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/explicit-member-accessibility */\nimport { Command } from 'clipanion';\n\nexport class VersionCommand extends Command {\n static paths = [[`--version`], [`-v`]];\n\n async execute() {\n const version = require('../../package.json').version;\n this.context.stdout.write(`v${version}\\n`);\n process.exit(0);\n }\n}\n"],"mappings":";;;;;;;AACA;;AADA;AAGO,MAAMA,cAAN,SAA6BC,kBAA7B,CAAqC;EAC9B,OAALC,KAAK,GAAG,CAAC,CAAE,WAAF,CAAD,EAAgB,CAAE,IAAF,CAAhB,CAAH;;EAEC,MAAPC,OAAO,GAAG;IACd,MAAMC,OAAO,GAAGC,OAAO,CAAC,oBAAD,CAAP,CAA8BD,OAA9C;;IACA,KAAKE,OAAL,CAAaC,MAAb,CAAoBC,KAApB,CAA2B,IAAGJ,OAAQ,IAAtC;IACAK,OAAO,CAACC,IAAR,CAAa,CAAb;EACD;;AAPyC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdaccio/cli",
3
- "version": "6.0.0-6-next.38",
3
+ "version": "6.0.0-6-next.48",
4
4
  "author": {
5
5
  "name": "Juan Picado",
6
6
  "email": "juanpicado19@gmail.com"
@@ -34,10 +34,10 @@
34
34
  "main": "./build/index.js",
35
35
  "types": "build/index.d.ts",
36
36
  "dependencies": {
37
- "@verdaccio/core": "6.0.0-6-next.8",
38
- "@verdaccio/config": "6.0.0-6-next.17",
39
- "@verdaccio/logger": "6.0.0-6-next.14",
40
- "@verdaccio/node-api": "6.0.0-6-next.36",
37
+ "@verdaccio/core": "6.0.0-6-next.48",
38
+ "@verdaccio/config": "6.0.0-6-next.48",
39
+ "@verdaccio/logger": "6.0.0-6-next.16",
40
+ "@verdaccio/node-api": "6.0.0-6-next.48",
41
41
  "clipanion": "3.1.0",
42
42
  "envinfo": "7.8.1",
43
43
  "kleur": "3.0.3",
@@ -6,7 +6,7 @@ export class VersionCommand extends Command {
6
6
 
7
7
  async execute() {
8
8
  const version = require('../../package.json').version;
9
- this.context.stdout.write(`v${version}`);
9
+ this.context.stdout.write(`v${version}\n`);
10
10
  process.exit(0);
11
11
  }
12
12
  }