@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 +6 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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/
|
|
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()) {
|