Skip to content

Commit

Permalink
chore: dev-scripts changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Oct 31, 2023
1 parent 64e93d0 commit 78596b2
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 237 deletions.
26 changes: 3 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,30 +46,10 @@
"proxy-agent": "^6.3.1"
},
"devDependencies": {
"@salesforce/dev-config": "^4.1.0",
"@salesforce/dev-scripts": "^5.12.2",
"@salesforce/prettier-config": "^0.0.3",
"@salesforce/dev-scripts": "^6.0.3",
"@salesforce/ts-sinon": "^1.4.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-salesforce": "^2.0.2",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^2.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.0",
"sinon": "^15.2.0",
"ts-node": "^10.0.0",
"typescript": "^5.2.2",
"wireit": "^0.14.1"
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"types": "lib/exported.d.ts",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/appInsights.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 * as os from 'os';
import * as os from 'node:os';
import { Logger } from '@salesforce/core';
import { AsyncCreatable, Env } from '@salesforce/kit';
import { isBoolean, isNumber, isString, JsonPrimitive } from '@salesforce/ts-types';
Expand Down
2 changes: 0 additions & 2 deletions src/exported.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
* 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
*/
'use strict';

import { TelemetryReporter } from './telemetryReporter';

export * from './telemetryReporter';
Expand Down
2 changes: 1 addition & 1 deletion src/telemetryReporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 * as os from 'os';
import * as os from 'node:os';
import { Logger, SfConfigProperties } from '@salesforce/core';
import { AsyncCreatable, env } from '@salesforce/kit';

Expand Down
2 changes: 1 addition & 1 deletion test/unit/telemetryReporter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* 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 * as os from 'os';
import * as os from 'node:os';
import { ConfigAggregator, Logger } from '@salesforce/core';
import got from 'got';
import { expect } from 'chai';
Expand Down
Loading

0 comments on commit 78596b2

Please sign in to comment.