Skip to content

Commit

Permalink
fix(deps): devScripts update (#518)
Browse files Browse the repository at this point in the history
* chore: updates from devScripts

* fix(deps): bump deps, remove shx and unused postpack

* docs: remove broken links, references to docs that don't exist

---------

Co-authored-by: mshanemc <shane.mclaughlin@salesforce.com>
  • Loading branch information
svc-cli-bot and mshanemc committed Dec 11, 2023
1 parent a9db39a commit 0c628c2
Show file tree
Hide file tree
Showing 4 changed files with 279 additions and 58 deletions.
1 change: 0 additions & 1 deletion CONTRIBUTING.md
@@ -1,7 +1,6 @@
## Contributing

1. The [DEVELOPING](DEVELOPING.md) doc has details on how to set up your environment.
1. Familiarize yourself with the codebase by reading the [docs](docs), which you can generate locally by running `yarn docs`.
1. Create a new issue before starting your project so that we can keep track of
what you are trying to add/fix. That way, we can also offer suggestions or
let you know if there is already an effort in progress.
Expand Down
4 changes: 0 additions & 4 deletions DEVELOPING.md
Expand Up @@ -34,10 +34,6 @@ This cleans all generated files and directories. Run `yarn clean-all` to also cl

This tests the typescript using ts-node.

### `yarn docs`

This generates documentation into [docs](docs).

### `yarn lint`

This lints all the typescript. If there are no errors/warnings
Expand Down
23 changes: 16 additions & 7 deletions package.json
Expand Up @@ -15,9 +15,9 @@
"compile": "wireit",
"docs": "sf-docs",
"format": "wireit",
"link-check": "wireit",
"lint": "wireit",
"lint-fix": "yarn sf-lint --fix",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "sf-prepack",
"prepare": "sf-install",
"test": "wireit",
Expand Down Expand Up @@ -45,21 +45,20 @@
},
"dependencies": {
"@oclif/core": "^3.10.8",
"@salesforce/core": "^6.2.2",
"@salesforce/core": "^6.4.0",
"@salesforce/kit": "^3.0.15",
"@salesforce/source-deploy-retrieve": "^10.0.3",
"@salesforce/source-deploy-retrieve": "^10.2.1",
"@salesforce/ts-types": "^2.0.9",
"fast-xml-parser": "^4.2.5",
"graceful-fs": "^4.2.11",
"isomorphic-git": "1.23.0",
"ts-retry-promise": "^0.7.0"
},
"devDependencies": {
"@salesforce/cli-plugins-testkit": "^5.0.4",
"@salesforce/dev-scripts": "^7.1.1",
"@salesforce/cli-plugins-testkit": "^5.1.1",
"@salesforce/dev-scripts": "^8.1.0",
"@types/graceful-fs": "^4.1.8",
"eslint-plugin-sf-plugin": "^1.16.15",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2"
Expand Down Expand Up @@ -121,7 +120,8 @@
"test": {
"dependencies": [
"test:only",
"test:compile"
"test:compile",
"link-check"
]
},
"test:only": {
Expand All @@ -138,6 +138,15 @@
".nycrc"
],
"output": []
},
"link-check": {
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
"files": [
"./*.md",
"./!(CHANGELOG).md",
"messages/**/*.md"
],
"output": []
}
}
}

0 comments on commit 0c628c2

Please sign in to comment.