lerna-projen 0.1.38 → 0.1.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ import commander from './index.js';
2
+
3
+ // wrapper to provide named exports for ESM.
4
+ export const {
5
+ program,
6
+ createCommand,
7
+ createArgument,
8
+ createOption,
9
+ CommanderError,
10
+ InvalidArgumentError,
11
+ InvalidOptionArgumentError, // deprecated old name
12
+ Command,
13
+ Argument,
14
+ Option,
15
+ Help
16
+ } = commander;