@shopify/create-app 0.15.0 → 0.16.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/bin/run.js +1 -1
- package/dist/commands/init.js +10 -3
- package/dist/commands/init.js.map +1 -1
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
package/bin/run.js
CHANGED
package/dist/commands/init.js
CHANGED
|
@@ -54832,7 +54832,7 @@ var license$1 = "MIT";
|
|
|
54832
54832
|
var type$2 = "module";
|
|
54833
54833
|
var module$1 = "dist/index.js";
|
|
54834
54834
|
var types = "dist/index.d.ts";
|
|
54835
|
-
var exports$
|
|
54835
|
+
var exports$2 = {
|
|
54836
54836
|
".": {
|
|
54837
54837
|
"import": "./dist/index.js",
|
|
54838
54838
|
types: "./dist/index.d.ts"
|
|
@@ -54898,7 +54898,7 @@ var cliKitPackageJson = {
|
|
|
54898
54898
|
type: type$2,
|
|
54899
54899
|
module: module$1,
|
|
54900
54900
|
types: types,
|
|
54901
|
-
exports: exports$
|
|
54901
|
+
exports: exports$2,
|
|
54902
54902
|
files: files$2,
|
|
54903
54903
|
publishConfig: publishConfig$2,
|
|
54904
54904
|
scripts: scripts$2,
|
|
@@ -55058,7 +55058,7 @@ const init$1 = async (options, prompt$1 = prompt) => {
|
|
|
55058
55058
|
};
|
|
55059
55059
|
|
|
55060
55060
|
var name$1 = "@shopify/cli";
|
|
55061
|
-
var version$1 = "0.
|
|
55061
|
+
var version$1 = "0.16.0";
|
|
55062
55062
|
var description$1 = "A CLI tool to build for the Shopify platform";
|
|
55063
55063
|
var type$1 = "module";
|
|
55064
55064
|
var main = "src/index.js";
|
|
@@ -55069,6 +55069,12 @@ var keywords = [
|
|
|
55069
55069
|
"shopify-partners"
|
|
55070
55070
|
];
|
|
55071
55071
|
var license = "MIT";
|
|
55072
|
+
var exports$1 = {
|
|
55073
|
+
".": {
|
|
55074
|
+
"import": "./dist/index.js",
|
|
55075
|
+
types: "./dist/index.d.ts"
|
|
55076
|
+
}
|
|
55077
|
+
};
|
|
55072
55078
|
var bin = {
|
|
55073
55079
|
shopify: "./bin/run.js"
|
|
55074
55080
|
};
|
|
@@ -55142,6 +55148,7 @@ var cliPackage = {
|
|
|
55142
55148
|
module: module,
|
|
55143
55149
|
keywords: keywords,
|
|
55144
55150
|
license: license,
|
|
55151
|
+
exports: exports$1,
|
|
55145
55152
|
bin: bin,
|
|
55146
55153
|
files: files$1,
|
|
55147
55154
|
publishConfig: publishConfig$1,
|