@shopify/create-app 0.11.0 → 0.15.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 +55341 -90
- package/dist/commands/init.js.map +1 -0
- package/dist/index.js +48912 -0
- package/dist/index.js.map +1 -0
- package/package.json +13 -15
- package/templates/app/README.md +2 -4
- package/templates/app/package.json +4 -3
- package/bin/create-app-dev.cmd +0 -3
- package/bin/create-app-dev.js +0 -18
- package/bin/create-app-run.cmd +0 -3
- package/bin/create-app-run.js +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @shopify/create-app
|
|
2
2
|
|
|
3
|
+
## 0.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a1d1bd7: Show the output from the package manager when installing dependencies
|
|
8
|
+
|
|
9
|
+
## 0.14.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Some visual improvements in the create-app workflow
|
|
14
|
+
|
|
15
|
+
## 0.13.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- Fix the app creation workflow
|
|
20
|
+
|
|
21
|
+
## 0.12.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- cb12e51: Populate the author when generating a new app
|
|
26
|
+
|
|
3
27
|
## 0.11.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/bin/run.cmd
ADDED