@verdaccio/cli 6.0.0-6-next.38 → 6.0.0-6-next.47
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,15 @@
|
|
|
1
1
|
# @verdaccio/cli
|
|
2
2
|
|
|
3
|
+
## 6.0.0-6-next.47
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 020ede43: fix: version with breakline
|
|
8
|
+
- @verdaccio/core@6.0.0-6-next.47
|
|
9
|
+
- @verdaccio/config@6.0.0-6-next.47
|
|
10
|
+
- @verdaccio/node-api@6.0.0-6-next.47
|
|
11
|
+
- @verdaccio/logger@6.0.0-6-next.15
|
|
12
|
+
|
|
3
13
|
## 6.0.0-6-next.38
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -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,
|
|
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.
|
|
3
|
+
"version": "6.0.0-6-next.47",
|
|
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.
|
|
38
|
-
"@verdaccio/config": "6.0.0-6-next.
|
|
39
|
-
"@verdaccio/logger": "6.0.0-6-next.
|
|
40
|
-
"@verdaccio/node-api": "6.0.0-6-next.
|
|
37
|
+
"@verdaccio/core": "6.0.0-6-next.47",
|
|
38
|
+
"@verdaccio/config": "6.0.0-6-next.47",
|
|
39
|
+
"@verdaccio/logger": "6.0.0-6-next.15",
|
|
40
|
+
"@verdaccio/node-api": "6.0.0-6-next.47",
|
|
41
41
|
"clipanion": "3.1.0",
|
|
42
42
|
"envinfo": "7.8.1",
|
|
43
43
|
"kleur": "3.0.3",
|
package/src/commands/version.ts
CHANGED