@shopify/cli-kit 3.25.0 → 3.27.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/LICENSE +8 -0
- package/README.md +3 -1
- package/assets/favicon.svg +0 -0
- package/dist/analytics.d.ts +1 -1
- package/dist/analytics.js +1 -2
- package/dist/analytics.js.map +1 -1
- package/dist/api/graphql/extension_specifications.d.ts +1 -0
- package/dist/api/graphql/extension_specifications.js +1 -0
- package/dist/api/graphql/extension_specifications.js.map +1 -1
- package/dist/api/graphql/find_org.d.ts +0 -6
- package/dist/api/graphql/find_org.js +0 -6
- package/dist/api/graphql/find_org.js.map +1 -1
- package/dist/constants.js +1 -1
- package/dist/constants.js.map +1 -1
- package/dist/git.d.ts +2 -1
- package/dist/git.js +23 -1
- package/dist/git.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/log.js +9 -18
- package/dist/log.js.map +1 -1
- package/dist/output.d.ts +1 -1
- package/dist/output.js +7 -1
- package/dist/output.js.map +1 -1
- package/dist/public/node/node-package-manager.d.ts +10 -0
- package/dist/public/node/node-package-manager.js +30 -4
- package/dist/public/node/node-package-manager.js.map +1 -1
- package/dist/public/node/ruby.js +8 -1
- package/dist/public/node/ruby.js.map +1 -1
- package/dist/system.js +1 -0
- package/dist/system.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -13
- package/CHANGELOG.md +0 -731
- package/dist/version.d.ts +0 -17
- package/dist/version.js +0 -31
- package/dist/version.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopify/cli-kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.27.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A set of utilities, interfaces, and models that are common across all the platform features",
|
|
6
6
|
"keywords": [
|
|
@@ -38,16 +38,6 @@
|
|
|
38
38
|
"access": "public",
|
|
39
39
|
"@shopify:registry": "https://registry.npmjs.org"
|
|
40
40
|
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"prepack": "cross-env NODE_ENV=production yarn nx build && cp ../../README.md README.md",
|
|
43
|
-
"build": "nx build",
|
|
44
|
-
"clean": "nx clean",
|
|
45
|
-
"lint": "nx lint",
|
|
46
|
-
"lint:fix": "nx lint:fix",
|
|
47
|
-
"test": "nx run cli-kit:test",
|
|
48
|
-
"test:watch": "nx test:watch",
|
|
49
|
-
"type-check": "nx type-check"
|
|
50
|
-
},
|
|
51
41
|
"eslintConfig": {
|
|
52
42
|
"extends": [
|
|
53
43
|
"../../.eslintrc.cjs"
|
|
@@ -123,13 +113,17 @@
|
|
|
123
113
|
"zod": "3.17.3"
|
|
124
114
|
},
|
|
125
115
|
"devDependencies": {
|
|
116
|
+
"@types/fs-extra": "9.0.13",
|
|
117
|
+
"@types/react": "17.0.2",
|
|
126
118
|
"@types/commondir": "^1.0.0",
|
|
127
119
|
"@types/cross-zip": "^4.0.0",
|
|
128
120
|
"@types/diff": "^5.0.2",
|
|
129
121
|
"@types/inquirer": "^8.2.1",
|
|
130
122
|
"@types/semver": "^7.3.9",
|
|
123
|
+
"@vitest/coverage-istanbul": "^0.23.4",
|
|
131
124
|
"node-stream-zip": "^1.15.0",
|
|
132
|
-
"vitest": "^0.
|
|
125
|
+
"vitest": "^0.23.4",
|
|
126
|
+
"vite": "^2.9.13"
|
|
133
127
|
},
|
|
134
128
|
"repository": {
|
|
135
129
|
"type": "git",
|
|
@@ -137,5 +131,15 @@
|
|
|
137
131
|
},
|
|
138
132
|
"bugs": {
|
|
139
133
|
"url": "https://github.com/Shopify/cli/issues/new/choose"
|
|
134
|
+
},
|
|
135
|
+
"scripts": {
|
|
136
|
+
"build": "nx build",
|
|
137
|
+
"clean": "nx clean",
|
|
138
|
+
"lint": "nx lint",
|
|
139
|
+
"lint:fix": "nx lint:fix",
|
|
140
|
+
"test": "nx run cli-kit:test",
|
|
141
|
+
"test:watch": "nx test:watch",
|
|
142
|
+
"test:coverage": "nx test:coverage",
|
|
143
|
+
"type-check": "nx type-check"
|
|
140
144
|
}
|
|
141
|
-
}
|
|
145
|
+
}
|