fix(cli): remove --enable-source-maps flag

This commit is contained in:
Joakim Carlstein 2024-01-18 10:40:53 +01:00 committed by Joakim Carlstein
parent a6e096bcbc
commit 83dc618c2e
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@emigrate/cli': patch
---
Remove the --enable-source-maps flag from the shebang for better NodeJS compatibility

View file

@ -1,4 +1,4 @@
#!/usr/bin/env node --enable-source-maps
#!/usr/bin/env node
import process from 'node:process';
import { parseArgs } from 'node:util';
import importFromEsm from 'import-from-esm';