Skip to content

Commit

Permalink
fix: fix alias path
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Sep 23, 2020
1 parent 2fac200 commit a97422a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/ts/libdefkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const normalize: IExecPipe = (flags: ICliFlags) => {
const cwd = flags.cwd || process.cwd()
const cache = findCacheDir({name: '@qiwi/libdefkit'}) + ''
const name = fs.readJsonSync(join(cwd, 'package.json')).name
const entry = flags.entry ?? `${name}/target/es5/index`
const entry = flags.entry ?? `${name}/target/es5`
const dtsOut = flags.dtsOut ?? join(cwd, 'typings/index.d.ts')
const flowOut = flags.flowOut ?? join(cwd, 'flow-typed/index.flow.js')

Expand Down

0 comments on commit a97422a

Please sign in to comment.