mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
* feat: add typeorm CLI variations that include `ts-node` Add `typeorm-ts-node-commonjs` and `typeorm-ts-node-esm` CLI commands. This removes the need to manually write `node --require ts-node/register ./node_modules/typeorm/cli.js` or `node --loader ts-node/esm ./node_modules/typeorm/cli.js` in order to use TypeORM CLI without transpiling the code in advance. * style: formatting
3 lines
70 B
JavaScript
3 lines
70 B
JavaScript
#!/usr/bin/env node --loader ts-node/esm --no-warnings
|
|
import "./cli"
|