@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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @shopify/cli
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @shopify/cli-configs@0.6.0
9
+
3
10
  ## 0.5.0
4
11
 
5
12
  ### Patch Changes
package/dist/help.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { Interfaces, HelpBase } from '@oclif/core';
2
+ export default class CustomHelp extends HelpBase {
3
+ showHelp(argv: string[]): Promise<void>;
4
+ showCommandHelp(command: Interfaces.Command, topics: Interfaces.Topic[]): Promise<void>;
5
+ }
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.0",
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": "^0.5.0",
46
- "@shopify/cli-core": "^0.3.0",
47
- "@shopify/cli-support": "^0.3.0",
48
- "@shopify/cli-theme": "^0.3.0"
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": "^12 || ^14 || ^16"
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",