Skip to content

Commit

Permalink
Merge pull request #209 from salesforcecli/sm/stderr-warnings
Browse files Browse the repository at this point in the history
chore: bump sf-plugins-core and other deps
  • Loading branch information
mshanemc authored Feb 15, 2023
2 parents a7dcbc4 + dc819a4 commit 3b3b451
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 115 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
*/
module.exports = {
extends: ['eslint-config-salesforce-typescript', 'eslint-config-salesforce-license', 'plugin:sf-plugin/recommended'],
rules: {
'sf-plugin/dash-o': 'off',
},
};
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
"@oclif/core": "^2.0.7",
"@oclif/core": "^2.1.1",
"@salesforce/core": "^3.33.1",
"@salesforce/kit": "^1.8.2",
"@salesforce/sf-plugins-core": "^2.0.1",
"@salesforce/kit": "^1.8.5",
"@salesforce/sf-plugins-core": "^2.1.1",
"change-case": "^4.1.2",
"fast-glob": "^3.2.12",
"fast-xml-parser": "^4.0.13",
Expand All @@ -19,9 +19,9 @@
"devDependencies": {
"@oclif/plugin-command-snapshot": "^3.3.3",
"@oclif/test": "^2.2.20",
"@salesforce/cli-plugins-testkit": "^3.2.12",
"@salesforce/cli-plugins-testkit": "^3.2.20",
"@salesforce/dev-config": "^3.1.0",
"@salesforce/dev-scripts": "^4.0.0-beta.8",
"@salesforce/dev-scripts": "^4.0.0-beta.9",
"@salesforce/plugin-command-reference": "^2.2.10",
"@salesforce/prettier-config": "^0.0.2",
"@salesforce/ts-sinon": "1.4.3",
Expand All @@ -39,7 +39,7 @@
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-sf-plugin": "^1.7.0",
"eslint-plugin-sf-plugin": "^1.8.1",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
Expand All @@ -50,7 +50,7 @@
"shx": "0.3.4",
"sinon": "10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript": "^4.9.5",
"wireit": "^0.9.3"
},
"config": {},
Expand Down Expand Up @@ -144,10 +144,11 @@
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\""
},
"lint": {
"command": "eslint --color --cache --cache-location .eslintcache",
"command": "eslint src test --color --cache --cache-location .eslintcache",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
".eslintignore",
".eslintrc.js"
],
Expand Down Expand Up @@ -211,4 +212,4 @@
"output": []
}
}
}
}
5 changes: 3 additions & 2 deletions test/nuts/fs.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,15 @@ describe('local fs NUTs', () => {
});

it('writeObjectFile', async () => {
const obj: SaveableCustomObject = {
const obj = {
fullName: 'Nut__c',
label: 'Nut',
nameField: {
label: 'Nut',
type: 'Text',
},
};
} satisfies SaveableCustomObject;

const expectedPath = path.join(
session.project.dir,
forceAppObjectsPath,
Expand Down
2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@salesforce/dev-config/tsconfig-test",
"extends": "@salesforce/dev-config/tsconfig-test-strict",
"include": ["./**/*.ts"],
"compilerOptions": {
"skipLibCheck": true
Expand Down
Loading

0 comments on commit 3b3b451

Please sign in to comment.