@shopify/create-app 0.33.5 → 0.33.6

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.33.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix create-app fixing the wrong dependency of @shopify/app
8
+
3
9
  ## 0.33.5
4
10
 
5
11
  ### Patch Changes
@@ -40338,7 +40338,7 @@ const username = async (platform = platform$1) => {
40338
40338
  };
40339
40339
 
40340
40340
  var name = "@shopify/cli-kit";
40341
- var version$1 = "0.33.5";
40341
+ var version$2 = "0.33.6";
40342
40342
  var description$1 = "A set of utilities, interfaces, and models that are common across all the platform features";
40343
40343
  var keywords = [
40344
40344
  "shopify",
@@ -40417,7 +40417,7 @@ var devDependencies = {
40417
40417
  };
40418
40418
  var cliKitPackageJson = {
40419
40419
  name: name,
40420
- version: version$1,
40420
+ version: version$2,
40421
40421
  "private": false,
40422
40422
  description: description$1,
40423
40423
  keywords: keywords,
@@ -40437,6 +40437,8 @@ var cliKitPackageJson = {
40437
40437
  devDependencies: devDependencies
40438
40438
  };
40439
40439
 
40440
+ var version$1 = "0.33.3";
40441
+
40440
40442
  var version = "0.33.3";
40441
40443
 
40442
40444
  const constants = {
@@ -40459,8 +40461,9 @@ const constants = {
40459
40461
  }
40460
40462
  },
40461
40463
  versions: {
40462
- cliKit: version$1,
40463
- cli: version
40464
+ cliKit: version$2,
40465
+ cli: version$1,
40466
+ app: version
40464
40467
  },
40465
40468
  keychain: {
40466
40469
  service: "shopify-cli"
@@ -147151,7 +147154,7 @@ async function init(options) {
147151
147154
  const user = await username() ?? "";
147152
147155
  const templatePath = await template("app");
147153
147156
  const cliPackageVersion = constants.versions.cli;
147154
- const appPackageVersion = constants.versions.cliKit;
147157
+ const appPackageVersion = constants.versions.app;
147155
147158
  const dependencyOverrides = {};
147156
147159
  if (options.shopifyCliVersion) {
147157
147160
  dependencyOverrides["@shopify/cli"] = options.shopifyCliVersion;