Skip to content

Commit

Permalink
Merge pull request #474 from salesforcecli/devScripts2023-12-17
Browse files Browse the repository at this point in the history
refactor: devScripts update
  • Loading branch information
svc-cli-bot authored Dec 17, 2023
2 parents a58c0c8 + 83151b7 commit 9ed97c3
Show file tree
Hide file tree
Showing 2 changed files with 288 additions and 39 deletions.
15 changes: 13 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"compile": "wireit",
"docs": "sf-docs",
"format": "wireit",
"link-check": "wireit",
"lint": "wireit",
"lint-fix": "yarn sf-lint --fix",
"postcompile": "tsc -p test",
Expand Down Expand Up @@ -44,7 +45,7 @@
},
"devDependencies": {
"@oclif/test": "^3.1.3",
"@salesforce/dev-scripts": "^7.1.1",
"@salesforce/dev-scripts": "^8.1.2",
"eslint-plugin-sf-plugin": "^1.17.0",
"shelljs": "0.8.5",
"strip-ansi": "6.0.1",
Expand Down Expand Up @@ -107,7 +108,8 @@
"test": {
"dependencies": [
"test:only",
"test:compile"
"test:compile",
"link-check"
]
},
"test:only": {
Expand All @@ -124,6 +126,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": []
}
}
}
Loading

0 comments on commit 9ed97c3

Please sign in to comment.