Skip to content

Commit

Permalink
fix: Upgrade to commander 9.0.0 (#2367)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jan 31, 2022
1 parent d395db4 commit f255b70
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"build": "lerna run build && lerna run prepare-cspell-action",
"check-spelling": "npx cspell -c cspellrc.json",
"clean-build": "npm run clean && lerna run clean-build",
"clean-dist": "rimraf \"packages/*/dist\"",
"clean": "rimraf \"{*,*/*}/{.tsbuildinfo,temp,coverage}\" lcov.info && lerna run clean",
"coverage-collect": "globcat packages/*/coverage/lcov.info > lcov.info",
"coverage": "lerna run coverage --stream && npm run coverage-collect",
Expand All @@ -29,13 +30,14 @@
"lint-docs": "prettier -w \"docs/**/*.{md,markdown,yaml,yml,json,html,htm}\"",
"lint": "npm run eslint-fix && prettier -w \"**/*.{md,yaml,yml,json}\"",
"prepare-cspell-action": "npm i && lerna run prepare-cspell-action",
"pub-lerna": "lerna publish from-git",
"pub-version-grad": "lerna version --conventional-commits --conventional-graduate",
"pub-version-pre": "lerna version --conventional-commits --conventional-prerelease",
"pub-version": "lerna version --conventional-commits",
"pre-pub": "npm run clean-dist && npm run ibt",
"x-pub-lerna": "lerna publish from-git",
"x-pub-version-grad": "lerna version --conventional-commits --conventional-graduate",
"x-pub-version-pre": "lerna version --conventional-commits --conventional-prerelease",
"x-pub-version": "lerna version --conventional-commits",
"pub": "npm run ibt && lerna publish --conventional-commits",
"pub-grad": "npm run ibt && lerna publish --conventional-commits --conventional-graduate",
"pub-next": "npm run ibt && lerna publish --conventional-commits --conventional-prerelease --dist-tag next",
"pub-grad": "npm run pre-pub && lerna publish --conventional-commits --conventional-graduate",
"pub-next": "npm run pre-pub && lerna publish --conventional-commits --conventional-prerelease --dist-tag next",
"symlink": "node build_tools/bin/symlink.js packages test-packages",
"test-watch": "lerna run --parallel test-watch",
"test": "lerna run test && npm run test-schema",
Expand Down
16 changes: 8 additions & 8 deletions packages/cspell/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cspell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"dependencies": {
"@cspell/cspell-pipe": "^5.18.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"commander": "^9.0.0",
"comment-json": "^4.1.1",
"cspell-gitignore": "^5.18.0",
"cspell-glob": "^5.18.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell/src/__snapshots__/app.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ Array [
" limited, by not including suggestions",
" that have the same edit cost.",
" --stdin Use stdin for input.",
" -v, --verbose Show detailed output. (default: 0)",
" -v, --verbose Show detailed output.",
" -d, --dictionary <dictionary name> Use the dictionary specified. Only",
" dictionaries specified will be used.",
" --dictionaries <dictionary names...> Use the dictionaries specified. Only",
Expand Down

0 comments on commit f255b70

Please sign in to comment.