@shopify/cli 3.24.1 → 3.26.0
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/LICENSE +8 -0
- package/dist/cli/commands/editions.js +2 -1
- package/dist/cli/commands/editions.js.map +1 -1
- package/dist/cli/services/kitchen-sink.js +19 -1
- package/dist/cli/services/kitchen-sink.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +1 -0
- package/package.json +20 -15
- package/CHANGELOG.md +0 -972
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"3.26.0","commands":{"editions":{"id":"editions","description":"Shopify editions","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"kitchen-sink":{"id":"kitchen-sink","description":"View all the available UI kit components","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"logs":{"id":"logs","description":"View full debug logs from the Shopify CLI","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","aliases":[],"flags":{"preset":{"name":"preset","type":"option","description":"The preset to apply to the current command.","hidden":true,"multiple":false},"verbose":{"name":"verbose","type":"boolean","description":"Increase the verbosity of the logs.","hidden":false,"allowNo":false},"last-command":{"name":"last-command","type":"boolean","description":"View logs for the most recent command only","hidden":true,"allowNo":false}},"args":[],"_globalFlags":{}},"upgrade":{"id":"upgrade","description":"Upgrade the Shopify CLI","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","aliases":[],"flags":{"path":{"name":"path","type":"option","description":"The path to your project directory.","hidden":false,"multiple":false}},"args":[],"_globalFlags":{}},"version":{"id":"version","description":"Shopify CLI version","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"auth:logout":{"id":"auth:logout","description":"Logout from Shopify","strict":true,"pluginName":"@shopify/cli","pluginAlias":"@shopify/cli","pluginType":"core","aliases":[],"flags":{},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.26.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to build for the Shopify platform",
|
|
6
6
|
"homepage": "https://github.com/shopify/cli#readme",
|
|
@@ -35,16 +35,6 @@
|
|
|
35
35
|
"access": "public",
|
|
36
36
|
"@shopify:registry": "https://registry.npmjs.org"
|
|
37
37
|
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"prepack": "cross-env NODE_ENV=production yarn nx build && cp ../../README.md README.md",
|
|
40
|
-
"build": "nx build",
|
|
41
|
-
"clean": "nx clean",
|
|
42
|
-
"lint": "nx lint",
|
|
43
|
-
"lint:fix": "nx lint:fix",
|
|
44
|
-
"test": "nx run cli-main:test",
|
|
45
|
-
"test:watch": "nx test:watch",
|
|
46
|
-
"type-check": "nx type-check"
|
|
47
|
-
},
|
|
48
38
|
"eslintConfig": {
|
|
49
39
|
"extends": [
|
|
50
40
|
"../../.eslintrc.cjs"
|
|
@@ -55,11 +45,16 @@
|
|
|
55
45
|
"@oclif/plugin-commands": "2.2.0",
|
|
56
46
|
"@oclif/plugin-help": "5.1.12",
|
|
57
47
|
"@oclif/plugin-plugins": "2.1.0",
|
|
58
|
-
"@shopify/cli-kit": "3.
|
|
59
|
-
"@shopify/plugin-ngrok": "3.
|
|
48
|
+
"@shopify/cli-kit": "3.26.0",
|
|
49
|
+
"@shopify/plugin-ngrok": "3.26.0"
|
|
60
50
|
},
|
|
61
51
|
"devDependencies": {
|
|
62
|
-
"vitest": "^0.
|
|
52
|
+
"@vitest/coverage-istanbul": "^0.23.4",
|
|
53
|
+
"vitest": "^0.23.4",
|
|
54
|
+
"vite": "^2.9.13",
|
|
55
|
+
"@shopify/app": "3.26.0",
|
|
56
|
+
"@shopify/cli-hydrogen": "3.26.0",
|
|
57
|
+
"@shopify/theme": "3.26.0"
|
|
63
58
|
},
|
|
64
59
|
"engine-strict": true,
|
|
65
60
|
"engines": {
|
|
@@ -112,5 +107,15 @@
|
|
|
112
107
|
"repository": {
|
|
113
108
|
"type": "git",
|
|
114
109
|
"url": "https://github.com/Shopify/cli/edit/main/packages/cli-main"
|
|
110
|
+
},
|
|
111
|
+
"scripts": {
|
|
112
|
+
"build": "nx build",
|
|
113
|
+
"clean": "nx clean",
|
|
114
|
+
"lint": "nx lint",
|
|
115
|
+
"lint:fix": "nx lint:fix",
|
|
116
|
+
"test": "nx run cli-main:test",
|
|
117
|
+
"test:watch": "nx test:watch",
|
|
118
|
+
"test:coverage": "nx test:coverage",
|
|
119
|
+
"type-check": "nx type-check"
|
|
115
120
|
}
|
|
116
|
-
}
|
|
121
|
+
}
|