shopify-cli-extensions 3.21.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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/package.json +13 -0
  3. package/wrapper.sh +3 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ shopify-cli-extensions
2
+ ===============
3
+
4
+ Squatting `shopify-cli-extensions` and wrapping the binary so that others don't.
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "shopify-cli-extensions",
3
+ "description": "Wrapper for @shopify/shopify-cli-extensions's shopify-cli-extensions binary",
4
+ "version": "3.21.0",
5
+ "bin": {
6
+ "shopify-cli-extensions": "./wrapper.sh"
7
+ },
8
+ "license": "UNLICENSED",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git://github.com/alxndrsn/alias-in-wonderland"
12
+ }
13
+ }
package/wrapper.sh ADDED
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+ # Try not to break peoples' integrations
3
+ exec npx --yes -p @shopify/shopify-cli-extensions shopify-cli-extensions "$@"