Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Babel 8] Bump commander to 12.1.0 #16517

Merged
merged 5 commits into from
May 28, 2024
Merged

Conversation

JLHwung
Copy link
Contributor

@JLHwung JLHwung commented May 19, 2024

Q                       A
Fixed Issues?
Patch: Bug Fix?
Major: Breaking Change?
Minor: New Feature?
Tests Added + Pass? Yes
Documentation PR Link
Any Dependency Changes? Bumped commander to 12.0.0 for babel-node and babel-cli
License MIT

Commander 12.1.0 supports Node.js 18 and above, so it is safe to bump it for Babel 8.

@babel-bot
Copy link
Collaborator

babel-bot commented May 19, 2024

Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/57039

@JLHwung JLHwung added the PR: Internal (next major) 🏠 A type of pull request used for our changelog categories for next major release label May 20, 2024
@@ -16,6 +16,7 @@ import type { PluginAPI, PluginObject } from "@babel/core";

const require = createRequire(import.meta.url);

// @ts-expect-error TS2339: Property 'default' does not exist on type 'typeof import("./node_modules/commander-BABEL_8_BREAKING-true/typings/index")'
const program = commander.default.program as commander.Command;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we maybe add this to lib/third-party-libs.d.ts?

declare module "commander" {
  import type { Command } from "commander-BABEL_8_BREAKING-true";
  const _default: { program: Command };
  export { _default as default };
}

(and remove it from tsconfig's paths)

@JLHwung JLHwung merged commit a21475a into babel:main May 28, 2024
51 checks passed
@JLHwung JLHwung deleted the bump-commander-babel-8 branch May 28, 2024 00:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Dependency ⬆️ PR: Internal (next major) 🏠 A type of pull request used for our changelog categories for next major release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants