@shopify/create-app 0.13.0 → 0.17.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 +24 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/init.js +55343 -142
- package/dist/commands/init.js.map +1 -0
- package/dist/index.js +48902 -115
- package/dist/index.js.map +1 -0
- package/package.json +18 -15
- package/templates/app/README.md +2 -4
- package/templates/app/package.json +4 -3
- package/bin/create-app-run.cmd +0 -3
- package/bin/create-app-run.js +0 -5
- package/bin/dev +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @shopify/create-app
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add logs to create-app
|
|
8
|
+
|
|
9
|
+
## 0.16.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Fix executables not running in the production version of the CLI
|
|
14
|
+
|
|
15
|
+
## 0.15.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- a1d1bd7: Show the output from the package manager when installing dependencies
|
|
20
|
+
|
|
21
|
+
## 0.14.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- Some visual improvements in the create-app workflow
|
|
26
|
+
|
|
3
27
|
## 0.13.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/bin/run.cmd
ADDED