@shopify/cli 0.2.0 → 0.3.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/CHANGELOG.md +15 -0
- package/package.json +13 -13
- package/dist/commands/hello/index.d.ts +0 -5
- package/dist/commands/hello/index.js +0 -11
- package/dist/commands/hello/index.js.map +0 -1
- package/dist/commands/hello/world.d.ts +0 -8
- package/dist/commands/hello/world.js +0 -18
- package/dist/commands/hello/world.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# @shopify/cli
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Draft the CLI interface
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @shopify/cli-theme@0.3.0
|
|
13
|
+
- @shopify/cli-app@0.3.0
|
|
14
|
+
- @shopify/cli-core@0.3.0
|
|
15
|
+
- @shopify/cli-support@0.3.0
|
|
16
|
+
|
|
3
17
|
## 0.2.0
|
|
18
|
+
|
|
4
19
|
### Minor Changes
|
|
5
20
|
|
|
6
21
|
- Move from Lerna to changeset
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to build for the Shopify platform",
|
|
6
6
|
"keywords": [
|
|
@@ -42,15 +42,12 @@
|
|
|
42
42
|
"@bugsnag/js": "^7.14.1",
|
|
43
43
|
"@oclif/core": "^1",
|
|
44
44
|
"@oclif/plugin-help": "^5",
|
|
45
|
-
"@
|
|
46
|
-
"@shopify/cli-
|
|
47
|
-
"@shopify/cli-
|
|
48
|
-
"@shopify/cli-
|
|
49
|
-
"@shopify/cli-theme": "^0.2.0"
|
|
50
|
-
},
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@oclif/test": "^2"
|
|
45
|
+
"@shopify/cli-app": "^0.3.0",
|
|
46
|
+
"@shopify/cli-core": "^0.3.0",
|
|
47
|
+
"@shopify/cli-support": "^0.3.0",
|
|
48
|
+
"@shopify/cli-theme": "^0.3.0"
|
|
53
49
|
},
|
|
50
|
+
"devDependencies": {},
|
|
54
51
|
"engine-strict": true,
|
|
55
52
|
"engines": {
|
|
56
53
|
"node": "^12 || ^14 || ^16"
|
|
@@ -62,15 +59,18 @@
|
|
|
62
59
|
],
|
|
63
60
|
"oclif": {
|
|
64
61
|
"bin": "shopify",
|
|
65
|
-
"commands": "./dist/commands",
|
|
66
62
|
"plugins": [
|
|
67
63
|
"@oclif/plugin-help",
|
|
68
|
-
"@
|
|
64
|
+
"@shopify/cli-theme",
|
|
65
|
+
"@shopify/cli-app"
|
|
69
66
|
],
|
|
70
67
|
"topicSeparator": " ",
|
|
71
68
|
"topics": {
|
|
72
|
-
"
|
|
73
|
-
"description": "
|
|
69
|
+
"theme": {
|
|
70
|
+
"description": "Commands for creating, building, and publishing themes"
|
|
71
|
+
},
|
|
72
|
+
"app": {
|
|
73
|
+
"description": "Commands for creating, building, and publishing app"
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const core_1 = require("@oclif/core");
|
|
4
|
-
class Hello extends core_1.Command {
|
|
5
|
-
async run() {
|
|
6
|
-
throw new Error('command error');
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
exports.default = Hello;
|
|
10
|
-
Hello.description = 'Say hello';
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/commands/hello/index.ts"],"names":[],"mappings":";;AAAA,sCAAoC;AAEpC,MAAqB,KAAM,SAAQ,cAAO;IAGxC,KAAK,CAAC,GAAG;QACP,MAAM,IAAI,KAAK,CAAC,eAAe,CAAC,CAAC;IACnC,CAAC;;AALH,wBAMC;AALQ,iBAAW,GAAG,WAAW,CAAC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const core_1 = require("@oclif/core");
|
|
4
|
-
class World extends core_1.Command {
|
|
5
|
-
async run() {
|
|
6
|
-
this.log('hello world! (./src/commands/hello/world.ts)');
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
exports.default = World;
|
|
10
|
-
World.description = 'Say hello world';
|
|
11
|
-
World.examples = [
|
|
12
|
-
`$ oex hello world
|
|
13
|
-
hello world! (./src/commands/hello/world.ts)
|
|
14
|
-
`,
|
|
15
|
-
];
|
|
16
|
-
World.flags = {};
|
|
17
|
-
World.args = [];
|
|
18
|
-
//# sourceMappingURL=world.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"world.js","sourceRoot":"","sources":["../../../src/commands/hello/world.ts"],"names":[],"mappings":";;AAAA,sCAAoC;AAEpC,MAAqB,KAAM,SAAQ,cAAO;IAaxC,KAAK,CAAC,GAAG;QACP,IAAI,CAAC,GAAG,CAAC,8CAA8C,CAAC,CAAC;IAC3D,CAAC;;AAfH,wBAgBC;AAfQ,iBAAW,GAAG,iBAAiB,CAAC;AAEhC,cAAQ,GAAG;IAChB;;CAEH;CACE,CAAC;AAEK,WAAK,GAAG,EAAE,CAAC;AAEX,UAAI,GAAG,EAAE,CAAC"}
|