@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 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
@@ -0,0 +1,3 @@
1
+ @echo off
2
+
3
+ node "%~dp0\run.js" %*
package/bin/run.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node --no-warnings
2
+
3
+ import runCreateApp from "../dist/index.js"
4
+
5
+ runCreateApp();