@shopify/cli 0.33.7 → 1.0.3
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 +30 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @shopify/cli
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add support for plugins
|
|
8
|
+
|
|
9
|
+
## 1.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Some fixes
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @shopify/cli-kit@1.0.1
|
|
16
|
+
|
|
17
|
+
## 1.0.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Get workflows working e2e
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @shopify/cli-kit@1.0.0
|
|
24
|
+
|
|
25
|
+
## 0.33.8
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Remove unnecessary dependencies
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @shopify/cli-kit@0.33.8
|
|
32
|
+
|
|
3
33
|
## 0.33.7
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A CLI tool to build for the Shopify platform",
|
|
6
6
|
"type": "module",
|
|
@@ -48,9 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@bugsnag/js": "^7.16.2",
|
|
51
|
-
"@oclif/core": "1.
|
|
51
|
+
"@oclif/core": "1.6.4",
|
|
52
52
|
"@oclif/plugin-help": "^5.1.11",
|
|
53
|
-
"@
|
|
53
|
+
"@oclif/plugin-plugins": "^2.1.0",
|
|
54
|
+
"@shopify/cli-kit": "1.0.1"
|
|
54
55
|
},
|
|
55
56
|
"devDependencies": {
|
|
56
57
|
"vitest": "0.7.9"
|
|
@@ -70,7 +71,8 @@
|
|
|
70
71
|
"plugins": [
|
|
71
72
|
"@oclif/plugin-help",
|
|
72
73
|
"@shopify/app",
|
|
73
|
-
"@shopify/cli-hydrogen"
|
|
74
|
+
"@shopify/cli-hydrogen",
|
|
75
|
+
"@oclif/plugin-plugins"
|
|
74
76
|
],
|
|
75
77
|
"topicSeparator": " ",
|
|
76
78
|
"topics": {
|