@shopify/create-app 0.17.0 → 0.18.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,11 @@
1
1
  # @shopify/create-app
2
2
 
3
+ ## 0.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Fix creation flows
8
+
3
9
  ## 0.17.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.js CHANGED
@@ -48892,11 +48892,10 @@ new Conf({
48892
48892
  projectVersion: cliKitPackageJson.version
48893
48893
  });
48894
48894
 
48895
- console.log(JSON.stringify(process.argv));
48896
48895
  function runCreateApp() {
48897
48896
  const initIndex = process.argv.findIndex((arg) => arg.includes("init"));
48898
48897
  if (initIndex === -1) {
48899
- const initIndex2 = process.argv.findIndex((arg) => arg.includes("bin/run")) + 1;
48898
+ const initIndex2 = process.argv.findIndex((arg) => arg.includes("bin/create-app") || arg.includes("bin/dev")) + 1;
48900
48899
  process.argv.splice(initIndex2, 0, "init");
48901
48900
  }
48902
48901
  if (isDebug()) {