qiwi / libdefkit

Utility to produce single file TS and Flow libdefs
MIT License
1 stars 0 forks source link

feat: add template for `entry` option #29

Open antongolub opened 3 years ago

antongolub commented 3 years ago
// before
const entry = flags.entry ?? `${name}/target/es5`

// after
const entry = template(flags.entry ?? '${ name }/target/es5')({name})