@shopify/cli-kit 3.74.1 → 3.75.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/dist/cli/api/graphql/admin/generated/theme_files_delete.d.ts +19 -0
- package/dist/cli/api/graphql/admin/generated/theme_files_delete.js +80 -0
- package/dist/cli/api/graphql/admin/generated/theme_files_delete.js.map +1 -0
- package/dist/private/node/constants.d.ts +1 -0
- package/dist/private/node/constants.js +1 -0
- package/dist/private/node/constants.js.map +1 -1
- package/dist/private/node/context/utilities.d.ts +1 -1
- package/dist/private/node/context/utilities.js.map +1 -1
- package/dist/private/node/session/validate.js +4 -7
- package/dist/private/node/session/validate.js.map +1 -1
- package/dist/private/node/ui/components/Tasks.d.ts +2 -1
- package/dist/private/node/ui/components/Tasks.js +8 -3
- package/dist/private/node/ui/components/Tasks.js.map +1 -1
- package/dist/private/node/ui/components/Tasks.test.js +62 -1
- package/dist/private/node/ui/components/Tasks.test.js.map +1 -1
- package/dist/private/node/ui/components/TextAnimation.d.ts +2 -1
- package/dist/private/node/ui/components/TextAnimation.js +12 -3
- package/dist/private/node/ui/components/TextAnimation.js.map +1 -1
- package/dist/public/common/string.js +0 -1
- package/dist/public/common/string.js.map +1 -1
- package/dist/public/common/version.d.ts +1 -1
- package/dist/public/common/version.js +1 -1
- package/dist/public/common/version.js.map +1 -1
- package/dist/public/node/context/fqdn.js +5 -1
- package/dist/public/node/context/fqdn.js.map +1 -1
- package/dist/public/node/context/local.d.ts +12 -1
- package/dist/public/node/context/local.js +17 -5
- package/dist/public/node/context/local.js.map +1 -1
- package/dist/public/node/environment.d.ts +6 -0
- package/dist/public/node/environment.js +8 -0
- package/dist/public/node/environment.js.map +1 -1
- package/dist/public/node/git.d.ts +10 -0
- package/dist/public/node/git.js +36 -2
- package/dist/public/node/git.js.map +1 -1
- package/dist/public/node/json-schema.d.ts +3 -1
- package/dist/public/node/json-schema.js +30 -12
- package/dist/public/node/json-schema.js.map +1 -1
- package/dist/public/node/session.d.ts +6 -4
- package/dist/public/node/session.js +13 -9
- package/dist/public/node/session.js.map +1 -1
- package/dist/public/node/themes/api.d.ts +1 -1
- package/dist/public/node/themes/api.js +37 -5
- package/dist/public/node/themes/api.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli-kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.75.0",
|
|
4
|
+
"packageManager": "pnpm@8.15.7",
|
|
4
5
|
"private": false,
|
|
5
6
|
"description": "A set of utilities, interfaces, and models that are common across all the platform features",
|
|
6
7
|
"keywords": [
|
|
@@ -119,8 +120,9 @@
|
|
|
119
120
|
"fs-extra": "11.1.0",
|
|
120
121
|
"get-port-please": "3.1.2",
|
|
121
122
|
"gradient-string": "2.0.2",
|
|
122
|
-
"graphql": "16.
|
|
123
|
-
"graphql-request": "
|
|
123
|
+
"graphql": "16.10.0",
|
|
124
|
+
"graphql-request": "6.1.0",
|
|
125
|
+
"ignore": "6.0.2",
|
|
124
126
|
"ink": "4.4.1",
|
|
125
127
|
"is-interactive": "2.0.0",
|
|
126
128
|
"jose": "5.9.6",
|
|
@@ -177,8 +179,8 @@
|
|
|
177
179
|
"scripts": {
|
|
178
180
|
"build": "nx build",
|
|
179
181
|
"clean": "nx clean",
|
|
180
|
-
"docs
|
|
181
|
-
"docs
|
|
182
|
+
"build-api-docs": "nx build-api-docs",
|
|
183
|
+
"open-api-docs": "nx open-api-docs",
|
|
182
184
|
"lint": "nx lint",
|
|
183
185
|
"lint:fix": "nx lint:fix",
|
|
184
186
|
"test": "nx test",
|
|
@@ -186,6 +188,6 @@
|
|
|
186
188
|
"test:coverage": "nx test:coverage",
|
|
187
189
|
"test:watch": "nx test:watch",
|
|
188
190
|
"type-check": "nx type-check",
|
|
189
|
-
"refresh-documentation": "nx refresh-documentation"
|
|
191
|
+
"refresh-code-documentation": "nx refresh-code-documentation"
|
|
190
192
|
}
|
|
191
193
|
}
|