@shopify/cli-kit 0.8.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 +37 -0
- package/dist/index.js +43986 -0
- package/package.json +64 -0
- package/src/constants.ts +11 -0
- package/src/environment.test.ts +221 -0
- package/src/environment.ts +72 -0
- package/src/error.ts +22 -0
- package/src/fs.ts +12 -0
- package/src/index.ts +8 -0
- package/src/network/service.ts +22 -0
- package/src/output.ts +61 -0
- package/src/path.ts +3 -0
- package/src/prompt.ts +4 -0
- package/src/session/authenticate.ts +3 -0
- package/src/session/identity.ts +44 -0
- package/src/string.ts +2 -0
- package/src/system.ts +5 -0
- package/src/template.ts +9 -0
- package/src/ui.ts +9 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @shopify/cli-kit
|
|
2
|
+
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b07c608: Rename @shopify/core to @shopify/cli-kit and finish up the create-app workflow
|
|
8
|
+
|
|
9
|
+
## 0.5.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Add @shopify/support and fix dependencies' setup
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @shopify/support@0.5.2
|
|
16
|
+
|
|
17
|
+
## 0.3.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- Draft the CLI interface
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @shopify/cli-support@0.3.0
|
|
27
|
+
|
|
28
|
+
## 0.2.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- Move from Lerna to changeset
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies
|
|
37
|
+
- @shopify/cli-support@0.2.0
|