@shopify/cli 0.5.0 → 0.5.1
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 +7 -0
- package/dist/help.d.ts +5 -0
- package/dist/help.js +13 -0
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
package/dist/help.d.ts
ADDED
package/dist/help.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const core_1 = require("@oclif/core");
|
|
4
|
+
class CustomHelp extends core_1.HelpBase {
|
|
5
|
+
async showHelp(argv) {
|
|
6
|
+
console.log(`This will be displayed in multi-command CLIs: ${argv}`);
|
|
7
|
+
}
|
|
8
|
+
async showCommandHelp(command, topics) {
|
|
9
|
+
console.log(`This will be displayed in single-command CLIs: ${command} ${topics}`);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.default = CustomHelp;
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVscC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy9oZWxwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsc0NBQWlEO0FBRWpELE1BQXFCLFVBQVcsU0FBUSxlQUFRO0lBQzlDLEtBQUssQ0FBQyxRQUFRLENBQUMsSUFBYztRQUMzQixPQUFPLENBQUMsR0FBRyxDQUFDLGlEQUFpRCxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3ZFLENBQUM7SUFFRCxLQUFLLENBQUMsZUFBZSxDQUNuQixPQUEyQixFQUMzQixNQUEwQjtRQUUxQixPQUFPLENBQUMsR0FBRyxDQUNULGtEQUFrRCxPQUFPLElBQUksTUFBTSxFQUFFLENBQ3RFLENBQUM7SUFDSixDQUFDO0NBQ0Y7QUFiRCw2QkFhQyJ9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to build for the Shopify platform",
|
|
6
6
|
"keywords": [
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"@bugsnag/js": "^7.14.1",
|
|
43
43
|
"@oclif/core": "^1",
|
|
44
44
|
"@oclif/plugin-help": "^5",
|
|
45
|
-
"@shopify/cli-app": "
|
|
46
|
-
"@shopify/cli-
|
|
47
|
-
"@shopify/cli-
|
|
48
|
-
"@shopify/cli-theme": "
|
|
45
|
+
"@shopify/cli-app": "0.5.0",
|
|
46
|
+
"@shopify/cli-configs": "0.6.0",
|
|
47
|
+
"@shopify/cli-core": "0.3.0",
|
|
48
|
+
"@shopify/cli-theme": "0.3.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {},
|
|
51
51
|
"engine-strict": true,
|
|
52
52
|
"engines": {
|
|
53
|
-
"node": "
|
|
53
|
+
"node": ">=12.0.0"
|
|
54
54
|
},
|
|
55
55
|
"os": [
|
|
56
56
|
"darwin",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
],
|
|
60
60
|
"oclif": {
|
|
61
61
|
"bin": "shopify",
|
|
62
|
+
"helpClass": "./src/help",
|
|
62
63
|
"plugins": [
|
|
63
64
|
"@oclif/plugin-help",
|
|
64
65
|
"@shopify/cli-theme",
|