@salesforce/plugin-data 2.3.2 → 2.3.4
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/oclif.manifest.json +1 -1
- package/package.json +118 -18
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -82,31 +82,27 @@
|
|
|
82
82
|
"access": "public"
|
|
83
83
|
},
|
|
84
84
|
"scripts": {
|
|
85
|
-
"build": "
|
|
85
|
+
"build": "wireit",
|
|
86
86
|
"clean": "sf-clean",
|
|
87
87
|
"clean-all": "sf-clean all",
|
|
88
88
|
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
|
|
89
|
-
"compile": "
|
|
89
|
+
"compile": "wireit",
|
|
90
90
|
"docs": "sf-docs",
|
|
91
|
-
"format": "
|
|
92
|
-
"lint": "
|
|
91
|
+
"format": "wireit",
|
|
92
|
+
"lint": "wireit",
|
|
93
93
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
94
|
-
"posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference && yarn test:json-schema",
|
|
95
94
|
"prepack": "sf-prepack",
|
|
96
95
|
"prepare": "sf-install",
|
|
97
|
-
"
|
|
98
|
-
"test": "sf-test",
|
|
99
|
-
"test:command-reference": "./bin/dev commandreference:generate --erroronwarnings",
|
|
100
|
-
"test:deprecation-policy": "./bin/dev snapshot:compare",
|
|
101
|
-
"test:json-schema": "./bin/dev schema:compare",
|
|
96
|
+
"test": "wireit",
|
|
102
97
|
"test:nuts": "nyc mocha \"./test/**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
98
|
+
"test:only": "wireit",
|
|
103
99
|
"version": "oclif readme"
|
|
104
100
|
},
|
|
105
101
|
"dependencies": {
|
|
106
102
|
"@oclif/core": "^2.3.1",
|
|
107
|
-
"@salesforce/core": "^3.
|
|
103
|
+
"@salesforce/core": "^3.33.5",
|
|
108
104
|
"@salesforce/kit": "^1.8.4",
|
|
109
|
-
"@salesforce/sf-plugins-core": "^2.
|
|
105
|
+
"@salesforce/sf-plugins-core": "^2.2.3",
|
|
110
106
|
"@salesforce/ts-types": "^1.7.3",
|
|
111
107
|
"@types/fs-extra": "^9.0.13",
|
|
112
108
|
"chalk": "^4.1.0",
|
|
@@ -120,7 +116,7 @@
|
|
|
120
116
|
"@oclif/plugin-command-snapshot": "^3.3.3",
|
|
121
117
|
"@salesforce/cli-plugins-testkit": "^3.2.20",
|
|
122
118
|
"@salesforce/dev-config": "^3.0.1",
|
|
123
|
-
"@salesforce/dev-scripts": "^
|
|
119
|
+
"@salesforce/dev-scripts": "^4.1.1",
|
|
124
120
|
"@salesforce/plugin-command-reference": "^2.2.9",
|
|
125
121
|
"@salesforce/prettier-config": "^0.0.2",
|
|
126
122
|
"@salesforce/ts-sinon": "^1.4.5",
|
|
@@ -145,7 +141,7 @@
|
|
|
145
141
|
"husky": "^7.0.4",
|
|
146
142
|
"mocha": "^9.1.3",
|
|
147
143
|
"nyc": "^15.1.0",
|
|
148
|
-
"oclif": "^3.
|
|
144
|
+
"oclif": "^3.7.0",
|
|
149
145
|
"prettier": "^2.8.0",
|
|
150
146
|
"pretty-quick": "^3.1.0",
|
|
151
147
|
"shelljs": "^0.8.3",
|
|
@@ -153,10 +149,114 @@
|
|
|
153
149
|
"sinon": "10.0.0",
|
|
154
150
|
"strip-ansi": "^6.0.1",
|
|
155
151
|
"ts-node": "^10.4.0",
|
|
156
|
-
"typescript": "^4.9.4"
|
|
152
|
+
"typescript": "^4.9.4",
|
|
153
|
+
"wireit": "^0.9.5"
|
|
154
|
+
},
|
|
155
|
+
"wireit": {
|
|
156
|
+
"build": {
|
|
157
|
+
"dependencies": [
|
|
158
|
+
"compile",
|
|
159
|
+
"lint"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"compile": {
|
|
163
|
+
"command": "tsc -p . --pretty --incremental",
|
|
164
|
+
"files": [
|
|
165
|
+
"src/**/*.ts",
|
|
166
|
+
"tsconfig.json",
|
|
167
|
+
"messages/**"
|
|
168
|
+
],
|
|
169
|
+
"output": [
|
|
170
|
+
"lib/**",
|
|
171
|
+
"*.tsbuildinfo"
|
|
172
|
+
],
|
|
173
|
+
"clean": "if-file-deleted"
|
|
174
|
+
},
|
|
175
|
+
"format": {
|
|
176
|
+
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
|
|
177
|
+
"files": [
|
|
178
|
+
"src/**/*.ts",
|
|
179
|
+
"test/**/*.ts",
|
|
180
|
+
"schemas/**/*.json",
|
|
181
|
+
"command-snapshot.json",
|
|
182
|
+
".prettier*"
|
|
183
|
+
],
|
|
184
|
+
"output": []
|
|
185
|
+
},
|
|
186
|
+
"lint": {
|
|
187
|
+
"command": "eslint src test --color --cache --cache-location .eslintcache",
|
|
188
|
+
"files": [
|
|
189
|
+
"src/**/*.ts",
|
|
190
|
+
"test/**/*.ts",
|
|
191
|
+
"messages/**",
|
|
192
|
+
".eslint*"
|
|
193
|
+
],
|
|
194
|
+
"output": []
|
|
195
|
+
},
|
|
196
|
+
"test:compile": {
|
|
197
|
+
"command": "tsc -p \"./test\" --pretty",
|
|
198
|
+
"files": [
|
|
199
|
+
"test/**/*.ts",
|
|
200
|
+
"tsconfig.json",
|
|
201
|
+
"test/tsconfig.json"
|
|
202
|
+
],
|
|
203
|
+
"output": []
|
|
204
|
+
},
|
|
205
|
+
"test": {
|
|
206
|
+
"dependencies": [
|
|
207
|
+
"test:compile",
|
|
208
|
+
"test:only",
|
|
209
|
+
"test:command-reference",
|
|
210
|
+
"test:deprecation-policy",
|
|
211
|
+
"lint",
|
|
212
|
+
"test:json-schema"
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
"test:only": {
|
|
216
|
+
"command": "nyc mocha \"test/**/*.test.ts\"",
|
|
217
|
+
"files": [
|
|
218
|
+
"test/**/*.ts",
|
|
219
|
+
"src/**/*.ts",
|
|
220
|
+
"tsconfig.json",
|
|
221
|
+
".mocha*",
|
|
222
|
+
"test/tsconfig.json",
|
|
223
|
+
"!*.nut.ts",
|
|
224
|
+
".nycrc"
|
|
225
|
+
],
|
|
226
|
+
"output": []
|
|
227
|
+
},
|
|
228
|
+
"test:command-reference": {
|
|
229
|
+
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
230
|
+
"files": [
|
|
231
|
+
"src/**/*.ts",
|
|
232
|
+
"messages/**",
|
|
233
|
+
"package.json"
|
|
234
|
+
],
|
|
235
|
+
"output": [
|
|
236
|
+
"tmp/root"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
"test:deprecation-policy": {
|
|
240
|
+
"command": "\"./bin/dev\" snapshot:compare",
|
|
241
|
+
"files": [
|
|
242
|
+
"src/**/*.ts"
|
|
243
|
+
],
|
|
244
|
+
"output": [],
|
|
245
|
+
"dependencies": [
|
|
246
|
+
"compile"
|
|
247
|
+
]
|
|
248
|
+
},
|
|
249
|
+
"test:json-schema": {
|
|
250
|
+
"command": "\"./bin/dev\" schema:compare",
|
|
251
|
+
"files": [
|
|
252
|
+
"src/**/*.ts",
|
|
253
|
+
"schemas"
|
|
254
|
+
],
|
|
255
|
+
"output": []
|
|
256
|
+
}
|
|
157
257
|
},
|
|
158
258
|
"sfdx": {
|
|
159
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.
|
|
160
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.
|
|
259
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.4.crt",
|
|
260
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.4.sig"
|
|
161
261
|
}
|
|
162
262
|
}
|