We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1efc2e commit d3048afCopy full SHA for d3048af
src/lerna/changelog/index.ts
@@ -45,7 +45,7 @@ export const execute = async (args: ILernaChangelogArgs = {}): Promise<string |
45
describeArgs.unshift('-C', args.path);
46
}
47
48
- const fromPath = (await import('lerna-changelog/lib/configuration')).fromPath;
+ const fromPath = (await import('lerna-changelog/lib/configuration.js')).fromPath;
49
const rootPath = await execa('git', revParseArgs);
50
const config = fromPath(rootPath.stdout);
51
const changelog = new Changelog(config);
typings/lerna-changelog/index.d.ts
@@ -6,4 +6,4 @@
6
*/
7
8
declare module 'lerna-changelog';
9
-declare module 'lerna-changelog/lib/configuration';
+declare module 'lerna-changelog/lib/configuration.js';
0 commit comments