@salesforce/plugin-signups 1.4.5 → 1.4.7
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 +36 -26
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-signups",
|
|
3
3
|
"description": "Commands to interact with org shapes",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.7",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^2.
|
|
10
|
-
"@salesforce/core": "^3.33.
|
|
11
|
-
"@salesforce/kit": "^1.9.
|
|
12
|
-
"@salesforce/sf-plugins-core": "^2.2.
|
|
9
|
+
"@oclif/core": "^2.4.0",
|
|
10
|
+
"@salesforce/core": "^3.33.6",
|
|
11
|
+
"@salesforce/kit": "^1.9.2",
|
|
12
|
+
"@salesforce/sf-plugins-core": "^2.2.4",
|
|
13
13
|
"chalk": "^4.1.2",
|
|
14
14
|
"change-case": "^4.1.2",
|
|
15
15
|
"tslib": "^2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@oclif/plugin-command-snapshot": "^3.3.
|
|
19
|
-
"@salesforce/cli-plugins-testkit": "^3.2.
|
|
18
|
+
"@oclif/plugin-command-snapshot": "^3.3.8",
|
|
19
|
+
"@salesforce/cli-plugins-testkit": "^3.2.23",
|
|
20
20
|
"@salesforce/dev-config": "^3.0.1",
|
|
21
|
-
"@salesforce/dev-scripts": "^4.
|
|
21
|
+
"@salesforce/dev-scripts": "^4.1.2",
|
|
22
22
|
"@salesforce/plugin-command-reference": "^2.4.1",
|
|
23
23
|
"@salesforce/prettier-config": "^0.0.2",
|
|
24
24
|
"@salesforce/ts-sinon": "^1.4.6",
|
|
25
25
|
"@salesforce/ts-types": "^1.7.3",
|
|
26
|
-
"@swc/core": "^1.3.
|
|
26
|
+
"@swc/core": "^1.3.37",
|
|
27
27
|
"@types/chai-as-promised": "^7.1.5",
|
|
28
28
|
"@types/chai-string": "^1.4.2",
|
|
29
29
|
"@types/inquirer": "^9.0.3",
|
|
30
30
|
"@types/shelljs": "^0.8.11",
|
|
31
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
32
|
-
"@typescript-eslint/parser": "^5.
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
32
|
+
"@typescript-eslint/parser": "^5.54.1",
|
|
33
33
|
"chai": "^4.3.7",
|
|
34
34
|
"chai-as-promised": "7.1.1",
|
|
35
35
|
"chai-string": "^1.5.0",
|
|
36
|
-
"eslint": "^8.
|
|
36
|
+
"eslint": "^8.35.0",
|
|
37
37
|
"eslint-config-prettier": "^8.6.0",
|
|
38
38
|
"eslint-config-salesforce": "^1.1.1",
|
|
39
39
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"eslint-plugin-header": "^3.1.1",
|
|
42
42
|
"eslint-plugin-import": "^2.27.5",
|
|
43
43
|
"eslint-plugin-jsdoc": "^39.6.9",
|
|
44
|
-
"eslint-plugin-sf-plugin": "^1.
|
|
44
|
+
"eslint-plugin-sf-plugin": "^1.9.2",
|
|
45
45
|
"husky": "^7.0.4",
|
|
46
46
|
"mocha": "^9.1.3",
|
|
47
47
|
"nyc": "^15.1.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"sinon": "^11.1.1",
|
|
53
53
|
"ts-node": "^10.2.1",
|
|
54
54
|
"typescript": "^4.9.5",
|
|
55
|
-
"wireit": "^0.9.
|
|
55
|
+
"wireit": "^0.9.5"
|
|
56
56
|
},
|
|
57
57
|
"config": {},
|
|
58
58
|
"engines": {
|
|
@@ -114,12 +114,8 @@
|
|
|
114
114
|
"prepack": "sf-prepack",
|
|
115
115
|
"prepare": "sf-install",
|
|
116
116
|
"test": "wireit",
|
|
117
|
-
"test:command-reference": "wireit",
|
|
118
|
-
"test:compile": "wireit",
|
|
119
|
-
"test:deprecation-policy": "wireit",
|
|
120
|
-
"test:json-schema": "wireit",
|
|
121
117
|
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 10",
|
|
122
|
-
"test:nuts:snapshots": "nyc mocha \"test/nuts/snapshots.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs
|
|
118
|
+
"test:nuts:snapshots": "nyc mocha \"test/nuts/snapshots.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
|
|
123
119
|
"test:only": "wireit",
|
|
124
120
|
"version": "oclif readme"
|
|
125
121
|
},
|
|
@@ -147,7 +143,15 @@
|
|
|
147
143
|
"clean": "if-file-deleted"
|
|
148
144
|
},
|
|
149
145
|
"format": {
|
|
150
|
-
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\""
|
|
146
|
+
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
|
|
147
|
+
"files": [
|
|
148
|
+
"src/**/*.ts",
|
|
149
|
+
"test/**/*.ts",
|
|
150
|
+
"schemas/**/*.json",
|
|
151
|
+
"command-snapshot.json",
|
|
152
|
+
".prettier*"
|
|
153
|
+
],
|
|
154
|
+
"output": []
|
|
151
155
|
},
|
|
152
156
|
"lint": {
|
|
153
157
|
"command": "eslint src test --color --cache --cache-location .eslintcache",
|
|
@@ -155,8 +159,7 @@
|
|
|
155
159
|
"src/**/*.ts",
|
|
156
160
|
"test/**/*.ts",
|
|
157
161
|
"messages/**",
|
|
158
|
-
".
|
|
159
|
-
".eslintrc.js"
|
|
162
|
+
".eslint*"
|
|
160
163
|
],
|
|
161
164
|
"output": []
|
|
162
165
|
},
|
|
@@ -181,11 +184,17 @@
|
|
|
181
184
|
},
|
|
182
185
|
"test:only": {
|
|
183
186
|
"command": "nyc mocha \"test/**/*.test.ts\"",
|
|
187
|
+
"env": {
|
|
188
|
+
"FORCE_COLOR": "2"
|
|
189
|
+
},
|
|
184
190
|
"files": [
|
|
185
191
|
"test/**/*.ts",
|
|
186
192
|
"src/**/*.ts",
|
|
187
193
|
"tsconfig.json",
|
|
188
|
-
"
|
|
194
|
+
".mocha*",
|
|
195
|
+
"test/tsconfig.json",
|
|
196
|
+
"!*.nut.ts",
|
|
197
|
+
".nycrc"
|
|
189
198
|
],
|
|
190
199
|
"output": []
|
|
191
200
|
},
|
|
@@ -193,7 +202,8 @@
|
|
|
193
202
|
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
|
|
194
203
|
"files": [
|
|
195
204
|
"src/**/*.ts",
|
|
196
|
-
"messages/**"
|
|
205
|
+
"messages/**",
|
|
206
|
+
"package.json"
|
|
197
207
|
],
|
|
198
208
|
"output": [
|
|
199
209
|
"tmp/root"
|
|
@@ -219,7 +229,7 @@
|
|
|
219
229
|
}
|
|
220
230
|
},
|
|
221
231
|
"sfdx": {
|
|
222
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.
|
|
223
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.
|
|
232
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.7.crt",
|
|
233
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.4.7.sig"
|
|
224
234
|
}
|
|
225
235
|
}
|