Skip to content

Commit

Permalink
fix: dependabot-library-updates (#4388)
Browse files Browse the repository at this point in the history
* fix: dependabot-library-updates
  • Loading branch information
jeffb-sfdc authored Aug 24, 2022
1 parent 50cf329 commit 795a122
Show file tree
Hide file tree
Showing 9 changed files with 757 additions and 341 deletions.
1,059 changes: 732 additions & 327 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
"npm": "^6"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@monorepo-utils/workspaces-to-typescript-project-references": "2.8.2",
"@octokit/core": "4.0.5",
"@salesforce/dev-config": "1.6.0",
"@tsconfig/node14": "1.0.3",
"acorn": "6.4.2",
"ajv": "6.12.6",
"check-peer-dependencies": "4.1.0",
"commitizen": "^4.2.4",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.2.0",
"depcheck": "1.4.3",
"eslint": "6.0.1",
Expand Down Expand Up @@ -101,4 +101,4 @@
"path": "./node_modules/cz-conventional-changelog"
}
}
}
}
2 changes: 1 addition & 1 deletion packages/salesforcedx-test-utils-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@types/sinon": "^2.3.7",
"chai": "^4.0.2",
"decache": "^4.1.0",
"glob": "^7.1.2",
"glob": "^8.0.3",
"istanbul": "^0.4.5",
"mocha": "^10",
"mocha-junit-reporter": "^1.23.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,4 @@
}
]
}
}
}
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-apex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -364,4 +364,4 @@
}
]
}
}
}
1 change: 1 addition & 0 deletions packages/salesforcedx-vscode-apex/src/requirements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import pathExists = require('path-exists');

// tslint:disable-next-line:no-var-requires
const expandHomeDir = require('expand-home-dir');

// tslint:disable-next-line:no-var-requires
const findJavaHome = require('find-java-home');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ import { createSandbox, SinonSandbox, SinonStub } from 'sinon';
import * as vscode from 'vscode';
import { SET_JAVA_DOC_LINK } from '../../src/constants';
import { nls } from '../../src/messages';
import { checkJavaVersion, JAVA_HOME_KEY, resolveRequirements } from '../../src/requirements';
import {
checkJavaVersion,
JAVA_HOME_KEY,
resolveRequirements
} from '../../src/requirements';
import pathExists = require('path-exists');
import * as cp from 'child_process';

Expand Down Expand Up @@ -69,7 +73,9 @@ describe('Java Requirements Test', () => {
const result = await checkJavaVersion('~/java_home');
expect(result).to.equal(true);
} catch (err) {
fail(`Should not have thrown when the Java version is 17. The error was: ${err}`);
fail(
`Should not have thrown when the Java version is 17. The error was: ${err}`
);
}
});

Expand All @@ -79,7 +85,9 @@ describe('Java Requirements Test', () => {
const result = await checkJavaVersion('~/java_home');
expect(result).to.equal(true);
} catch (err) {
fail(`Should not have thrown when the Java version is 11. The error was: ${err}`);
fail(
`Should not have thrown when the Java version is 11. The error was: ${err}`
);
}
});

Expand All @@ -89,7 +97,9 @@ describe('Java Requirements Test', () => {
const result = await checkJavaVersion('~/java_home');
expect(result).to.equal(true);
} catch (err) {
fail(`Should not have thrown when the Java version is 17. The error was: ${err}`);
fail(
`Should not have thrown when the Java version is 17. The error was: ${err}`
);
}
});

Expand Down
2 changes: 1 addition & 1 deletion packages/salesforcedx-vscode-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@salesforce/ts-types": "1.5.13",
"adm-zip": "0.4.13",
"applicationinsights": "1.0.7",
"glob": "^7.1.2",
"glob": "^8.0.3",
"jsforce": "2.0.0-beta.18",
"rxjs": "^5.4.1",
"sanitize-filename": "^1.6.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/system-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"cross-env": "5.2.0",
"decache": "^4.1.0",
"electron": "7.3.2",
"glob": "^7.1.2",
"glob": "^8.0.3",
"istanbul": "^0.4.5",
"mkdirp": "0.5.1",
"mocha": "^10",
Expand All @@ -49,4 +49,4 @@
"activationEvents": [
"*"
]
}
}

0 comments on commit 795a122

Please sign in to comment.