@shopify/shop-minis-cli 0.0.100 → 0.0.102
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/build/commands/dev/utils/deeplink.js +5 -0
- package/build/commands/dev/utils/deeplink.js.map +1 -1
- package/build/commands/generate-graphql-types/index.js +17 -5
- package/build/commands/generate-graphql-types/index.js.map +1 -1
- package/build/product_public.graphql +1435 -0
- package/build/utils/extension-targets.d.ts +3 -0
- package/build/utils/extension-targets.js +4 -0
- package/build/utils/extension-targets.js.map +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extension-targets.js","sourceRoot":"","sources":["../../src/utils/extension-targets.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAC/B,YAAY,EAAE,cAAc;CAC7B,CAAA"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public",
|
|
5
5
|
"@shopify:registry": "https://registry.npmjs.org/"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.0.
|
|
7
|
+
"version": "0.0.102",
|
|
8
8
|
"description": "Shop Minis CLI",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"bin": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "yarn clean && yarn build:cli:graphql && yarn build:cli && yarn dev-panel:build-and-copy",
|
|
18
18
|
"clean": "rm -rf build",
|
|
19
|
-
"
|
|
19
|
+
"copy-schemas": "cp src/commands/generate-graphql-types/*.graphql build/",
|
|
20
|
+
"build:cli": "tsc -p tsconfig.build.json && chmod 755 build/index.js && yarn copy-schemas",
|
|
20
21
|
"build:cli:watch": "chokidar \"./src/**/*.ts\" -c \"yarn run build:cli\" --silent --initial --ignore '(build|node_modules)'",
|
|
21
22
|
"build:cli:graphql": "node --loader ts-node/esm scripts/graphql-codegen.ts",
|
|
22
23
|
"lint": "eslint . --ext .js,.mjs,.ts,.tsx --format codeframe --cache",
|