@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 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
@@ -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 "@shopify/create-app";
4
+
5
+ runCreateApp();