@shopify/cli 3.0.15 ā 3.0.16
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 +12 -0
- package/dist/commands/version.js +1 -2
- package/dist/commands/version.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/services/monorail.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @shopify/cli
|
|
2
2
|
|
|
3
|
+
## 3.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- eb915dee: Loose version requirements to help dependency managers dedupe dependencies
|
|
8
|
+
- a750e67c: Improve dependency upgrade messages to leverage new shopify upgrade command
|
|
9
|
+
- Updated dependencies [eb915dee]
|
|
10
|
+
- Updated dependencies [85ee088d]
|
|
11
|
+
- Updated dependencies [2ecbff43]
|
|
12
|
+
- Updated dependencies [a750e67c]
|
|
13
|
+
- @shopify/cli-kit@3.0.16
|
|
14
|
+
|
|
3
15
|
## 3.0.15
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/commands/version.js
CHANGED
|
@@ -8,8 +8,7 @@ const _Version = class extends Command {
|
|
|
8
8
|
output.info(output.content`Current ${_Version.description}: ${output.token.yellow(currentVersion)}`.value);
|
|
9
9
|
const lastVersion = await dependency.checkForNewVersion(cliDependency, currentVersion);
|
|
10
10
|
if (lastVersion) {
|
|
11
|
-
output.info(
|
|
12
|
-
output.info(dependency.getOutputUpdateCLIReminder(dependency.dependencyManagerUsedForCreating(), [cliDependency]));
|
|
11
|
+
output.info(dependency.getOutputUpdateCLIReminder(dependency.dependencyManagerUsedForCreating(), lastVersion));
|
|
13
12
|
}
|
|
14
13
|
}
|
|
15
14
|
getCurrentVersion() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sources":["../../src/cli/commands/version.ts"],"sourcesContent":["import {Command} from '@oclif/core'\nimport {output, dependency} from '@shopify/cli-kit'\n\nexport default class Version extends Command {\n static description = 'Shopify CLI version'\n\n async run(): Promise<void> {\n const cliDependency = '@shopify/cli'\n const currentVersion = this.getCurrentVersion()\n output.info(output.content`Current ${Version.description}: ${output.token.yellow(currentVersion)}`.value)\n const lastVersion = await dependency.checkForNewVersion(cliDependency, currentVersion)\n if (lastVersion) {\n output.info(
|
|
1
|
+
{"version":3,"file":"version.js","sources":["../../src/cli/commands/version.ts"],"sourcesContent":["import {Command} from '@oclif/core'\nimport {output, dependency} from '@shopify/cli-kit'\n\nexport default class Version extends Command {\n static description = 'Shopify CLI version'\n\n async run(): Promise<void> {\n const cliDependency = '@shopify/cli'\n const currentVersion = this.getCurrentVersion()\n output.info(output.content`Current ${Version.description}: ${output.token.yellow(currentVersion)}`.value)\n const lastVersion = await dependency.checkForNewVersion(cliDependency, currentVersion)\n if (lastVersion) {\n output.info(dependency.getOutputUpdateCLIReminder(dependency.dependencyManagerUsedForCreating(), lastVersion))\n }\n }\n\n getCurrentVersion(): string {\n return this.config.version\n }\n}\n"],"names":[],"mappings":";;;AAGA,MAAqB,QAAA,GAArB,cAAqC,OAAQ,CAAA;AAAA,EAG3C,MAAM,GAAqB,GAAA;AACzB,IAAA,MAAM,aAAgB,GAAA,cAAA,CAAA;AACtB,IAAM,MAAA,cAAA,GAAiB,KAAK,iBAAkB,EAAA,CAAA;AAC9C,IAAO,MAAA,CAAA,IAAA,CAAK,MAAO,CAAA,OAAA,CAAA,QAAA,EAAkB,QAAQ,CAAA,WAAA,CAAA,EAAA,EAAgB,OAAO,KAAM,CAAA,MAAA,CAAO,cAAc,CAAA,CAAA,CAAA,CAAI,KAAK,CAAA,CAAA;AACxG,IAAA,MAAM,WAAc,GAAA,MAAM,UAAW,CAAA,kBAAA,CAAmB,eAAe,cAAc,CAAA,CAAA;AACrF,IAAA,IAAI,WAAa,EAAA;AACf,MAAA,MAAA,CAAO,KAAK,UAAW,CAAA,0BAAA,CAA2B,WAAW,gCAAiC,EAAA,EAAG,WAAW,CAAC,CAAA,CAAA;AAAA,KAC/G;AAAA,GACF;AAAA,EAEA,iBAA4B,GAAA;AAC1B,IAAA,OAAO,KAAK,MAAO,CAAA,OAAA,CAAA;AAAA,GACrB;AACF,CAAA,CAAA;AAhBA,IAAqB,OAArB,GAAA,SAAA;AAAqB,QACZ,WAAc,GAAA,qBAAA;;;;"}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.16",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to build for the Shopify platform",
|
|
6
6
|
"type": "module",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@bugsnag/js": "^7.16.7",
|
|
51
|
-
"@oclif/core": "1.
|
|
51
|
+
"@oclif/core": "^1.0",
|
|
52
52
|
"@oclif/plugin-help": "^5.1.12",
|
|
53
53
|
"@oclif/plugin-plugins": "^2.1.0",
|
|
54
|
-
"@shopify/
|
|
55
|
-
"@shopify/
|
|
54
|
+
"@shopify/plugin-ngrok": "^0.2.9",
|
|
55
|
+
"@shopify/cli-kit": "^3.0.16"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"vitest": "0.13.1"
|