@shopify/cli 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,5 +1,11 @@
1
1
  # @shopify/cli
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
4
10
 
5
11
  ### Minor Changes
package/bin/run.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node --no-warnings
2
2
 
3
- import runCLI from "../dist/index.js";
3
+ import runCLI from "@shopify/cli";
4
4
 
5
5
  runCLI();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopify/cli",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "private": false,
5
5
  "description": "A CLI tool to build for the Shopify platform",
6
6
  "type": "module",
@@ -12,6 +12,12 @@
12
12
  "shopify-partners"
13
13
  ],
14
14
  "license": "MIT",
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts"
19
+ }
20
+ },
15
21
  "bin": {
16
22
  "shopify": "./bin/run.js"
17
23
  },