Skip to content

Commit

Permalink
chore: updates from devScripts
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Oct 29, 2023
1 parent f39cea0 commit 223e2c2
Show file tree
Hide file tree
Showing 5 changed files with 167 additions and 200 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@oclif/plugin-command-snapshot": "^4.0.14",
"@salesforce/cli-plugins-testkit": "^4.4.10",
"@salesforce/dev-config": "^4.0.1",
"@salesforce/dev-scripts": "^5.11.0",
"@salesforce/dev-scripts": "^5.12.2",
"@salesforce/plugin-command-reference": "^3.0.43",
"@salesforce/plugin-telemetry": "^2.3.8",
"@salesforce/prettier-config": "^0.0.3",
Expand All @@ -38,10 +38,10 @@
"eslint-config-prettier": "^8.10.0",
"eslint-config-salesforce": "^2.0.2",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^1.1.2",
"eslint-config-salesforce-typescript": "^2.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^43.0.5",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-sf-plugin": "^1.16.9",
"husky": "^7.0.4",
"mocha": "^9.1.3",
Expand All @@ -53,8 +53,8 @@
"sinon": "10.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.0.0",
"typescript": "^4.9.5",
"wireit": "^0.14.0"
"typescript": "^5.2.2",
"wireit": "^0.14.1"
},
"config": {},
"engines": {
Expand Down
6 changes: 3 additions & 3 deletions test/nuts/plugin-install.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/

import * as path from 'path';
import * as fs from 'fs';
import * as os from 'os';
import * as path from 'node:path';
import * as fs from 'node:fs';
import * as os from 'node:os';
import { expect, config } from 'chai';
import { TestSession, execCmd, execInteractiveCmd, Interaction } from '@salesforce/cli-plugins-testkit';
import { Messages } from '@salesforce/core';
Expand Down
4 changes: 2 additions & 2 deletions test/shared/installationVerification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import { Readable } from 'stream';
import * as fs from 'fs';
import { Readable } from 'node:stream';
import * as fs from 'node:fs';
import { assert, expect } from 'chai';
import got from 'got';
import { OptionsOfTextResponseBody } from 'got';
Expand Down
6 changes: 3 additions & 3 deletions test/shared/npmCommand.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/

import { fail } from 'assert';
import * as os from 'os';
import * as fs from 'fs';
import { fail } from 'node:assert';
import * as os from 'node:os';
import * as fs from 'node:fs';
import { expect, use as chaiUse, assert } from 'chai';
import * as Sinon from 'sinon';
import * as SinonChai from 'sinon-chai';
Expand Down
Loading

0 comments on commit 223e2c2

Please sign in to comment.