Skip to content

Commit 219cf1e

Browse files
committed
fix: bump deps
1 parent a102703 commit 219cf1e

File tree

3 files changed

+98
-174
lines changed

3 files changed

+98
-174
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"main": "lib/index.js",
77
"bugs": "https://github.com/forcedotcom/cli/issues",
88
"dependencies": {
9-
"@oclif/core": "^2.3.0",
10-
"@salesforce/core": "^3.33.2",
9+
"@oclif/core": "^2.3.1",
10+
"@salesforce/core": "^3.33.5",
1111
"@salesforce/kit": "^1.9.0",
12-
"@salesforce/sf-plugins-core": "^2.2.1",
12+
"@salesforce/sf-plugins-core": "^2.2.3",
1313
"open": "8.4.1",
1414
"tslib": "^2"
1515
},
@@ -24,31 +24,31 @@
2424
"@swc/core": "^1.3.36",
2525
"@types/chai-as-promised": "^7.1.5",
2626
"@types/shelljs": "^0.8.10",
27-
"@typescript-eslint/eslint-plugin": "^5.42.1",
28-
"@typescript-eslint/parser": "^5.46.0",
27+
"@typescript-eslint/eslint-plugin": "^5.53.0",
28+
"@typescript-eslint/parser": "^5.53.0",
2929
"chai": "^4.3.7",
3030
"chai-as-promised": "^7.1.1",
3131
"eslint": "^8.33.0",
3232
"eslint-config-prettier": "^8.6.0",
3333
"eslint-config-salesforce": "^1.1.1",
34-
"eslint-config-salesforce-license": "^0.1.6",
34+
"eslint-config-salesforce-license": "^0.2.0",
3535
"eslint-config-salesforce-typescript": "^1.1.1",
3636
"eslint-plugin-header": "^3.0.0",
3737
"eslint-plugin-import": "2.27.5",
38-
"eslint-plugin-jsdoc": "^39.6.7",
38+
"eslint-plugin-jsdoc": "^40.0.0",
3939
"eslint-plugin-sf-plugin": "^1.8.1",
4040
"husky": "^7.0.4",
4141
"mocha": "^9.1.3",
4242
"moment": "^2.29.1",
4343
"nyc": "^15.1.0",
44-
"oclif": "^3.6.5",
44+
"oclif": "^3.7.0",
4545
"prettier": "^2.8.4",
4646
"pretty-quick": "^3.1.0",
4747
"shelljs": "^0.8.5",
4848
"shx": "0.3.4",
4949
"sinon": "10.0.0",
5050
"ts-node": "^10.9.1",
51-
"typescript": "^4.9.4",
51+
"typescript": "^4.9.5",
5252
"wireit": "^0.9.5"
5353
},
5454
"engines": {

src/commands/force/org/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export class Create extends SfCommand<CreateResult> {
282282
if (!scratchOrgInfo) {
283283
throw new SfError('No scratch org info returned from scratchOrgCreate');
284284
}
285-
if (!authFields || !authFields.orgId) {
285+
if (!authFields?.orgId) {
286286
throw new SfError('Information missing from authFields');
287287
}
288288

0 commit comments

Comments
 (0)