mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
* export main cli & add tsup-node * update docs * update tests * refactor external-plugin to support skipNodeModulesBundle directly * update docs Co-authored-by: EGOIST <0x142857@gmail.com>
6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
#!/usr/bin/env node
|
|
import { handleError } from './errors'
|
|
import { main } from './cli-main'
|
|
|
|
main().catch(handleError)
|