@shopify/create-hydrogen 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 CHANGED
@@ -1,6 +1,13 @@
1
1
  # @shopify/create-hydrogen
2
2
 
3
+ ## 0.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Fix executables not running in the production version of the CLI
8
+
3
9
  ## 0.15.0
10
+
4
11
  ### Minor Changes
5
12
 
6
13
  - 15c4491: Add create-hydrogen package to the repository
package/bin/run.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node --no-warnings
2
2
 
3
- import runCreateHydrogen from "../dist/index.js"
3
+ import runCreateApp from "@shopify/create-hydrogen";
4
4
 
5
5
  runCreateHydrogen();
@@ -16401,7 +16401,7 @@ chalk$d.stderr.supportsColor = stderrColor;
16401
16401
  var source$1 = chalk$d;
16402
16402
 
16403
16403
  var name$1 = "@shopify/cli";
16404
- var version$2 = "0.15.0";
16404
+ var version$2 = "0.16.0";
16405
16405
  var description$2 = "A CLI tool to build for the Shopify platform";
16406
16406
  var type$3 = "module";
16407
16407
  var main$3 = "src/index.js";
@@ -16412,6 +16412,12 @@ var keywords = [
16412
16412
  "shopify-partners"
16413
16413
  ];
16414
16414
  var license = "MIT";
16415
+ var exports = {
16416
+ ".": {
16417
+ "import": "./dist/index.js",
16418
+ types: "./dist/index.d.ts"
16419
+ }
16420
+ };
16415
16421
  var bin = {
16416
16422
  shopify: "./bin/run.js"
16417
16423
  };
@@ -16485,6 +16491,7 @@ var cliPackageJson = {
16485
16491
  module: module,
16486
16492
  keywords: keywords,
16487
16493
  license: license,
16494
+ exports: exports,
16488
16495
  bin: bin,
16489
16496
  files: files$1,
16490
16497
  publishConfig: publishConfig,