.cz-adapter.cjs 347 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2024, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /*
  7. * A workaround for:
  8. *
  9. * https://github.com/conventional-changelog/commitlint/issues/3949
  10. */
  11. exports.prompter = async (inquirerIns, commit) => {
  12. ; (await import('@commitlint/cz-commitlint')).prompter(inquirerIns, commit)
  13. }