@shopify/cli-kit 3.0.19 → 3.0.20
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 +7 -0
- package/dist/{index-de7fb9a0.js → index-f41ad36b.js} +5 -6
- package/dist/index-f41ad36b.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/{multipart-parser-4b50b4ce.js → multipart-parser-df3ab369.js} +2 -2
- package/dist/{multipart-parser-4b50b4ce.js.map → multipart-parser-df3ab369.js.map} +1 -1
- package/package.json +1 -1
- package/dist/index-de7fb9a0.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7156,7 +7156,7 @@ var path$w = /*#__PURE__*/Object.freeze({
|
|
|
7156
7156
|
});
|
|
7157
7157
|
|
|
7158
7158
|
var name = "@shopify/cli-kit";
|
|
7159
|
-
var version$2 = "3.0.
|
|
7159
|
+
var version$2 = "3.0.20";
|
|
7160
7160
|
var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
|
|
7161
7161
|
var keywords = [
|
|
7162
7162
|
"shopify",
|
|
@@ -16879,9 +16879,8 @@ function isVerbose(env = process.env) {
|
|
|
16879
16879
|
return isTruthy$1(env[constants$2.environmentVariables.verbose]) || process.argv.includes("--verbose");
|
|
16880
16880
|
}
|
|
16881
16881
|
async function isShopify(env = process.env) {
|
|
16882
|
-
|
|
16883
|
-
|
|
16884
|
-
return false;
|
|
16882
|
+
if (Object.prototype.hasOwnProperty.call(env, constants$2.environmentVariables.runAsUser)) {
|
|
16883
|
+
return !isTruthy$1(env[constants$2.environmentVariables.runAsUser]);
|
|
16885
16884
|
}
|
|
16886
16885
|
const devInstalled = await exists$1(constants$2.paths.executables.dev);
|
|
16887
16886
|
return devInstalled || isSpin();
|
|
@@ -21877,7 +21876,7 @@ class Body$1 {
|
|
|
21877
21876
|
return formData;
|
|
21878
21877
|
}
|
|
21879
21878
|
|
|
21880
|
-
const {toFormData} = await import('./multipart-parser-
|
|
21879
|
+
const {toFormData} = await import('./multipart-parser-df3ab369.js');
|
|
21881
21880
|
return toFormData(this.body, ct);
|
|
21882
21881
|
}
|
|
21883
21882
|
|
|
@@ -175187,4 +175186,4 @@ var yaml = /*#__PURE__*/Object.freeze({
|
|
|
175187
175186
|
});
|
|
175188
175187
|
|
|
175189
175188
|
export { semver$2 as A, session as B, store$2 as C, string as D, system as E, FormData$3 as F, template as G, temporary as H, toml as I, ui as J, version as K, vscode as L, yaml as M, File$1 as a, abort$3 as b, constants$2 as c, analytics as d, api as e, archiver as f, checksum as g, cli as h, dependency as i, dotEnv as j, environment as k, error$k as l, file$1 as m, git as n, github as o, haiku as p, http$2 as q, id as r, npm as s, os$3 as t, output as u, path$w as v, plugins as w, port as x, ruby as y, schema$1 as z };
|
|
175190
|
-
//# sourceMappingURL=index-
|
|
175189
|
+
//# sourceMappingURL=index-f41ad36b.js.map
|