You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
#!/usr/bin/env node
|
|
|
|
const { resolve } = require("path");
|
|
|
|
const script = process.argv.splice(2, 1)[0];
|
|
|
|
if (!script) {
|
|
// eslint-disable-next-line no-console
|
|
console.error("Usage: jiti <path> [...arguments]");
|
|
process.exit(1);
|
|
}
|
|
|
|
const pwd = process.cwd();
|
|
const jiti = require("..")(pwd);
|
|
const resolved = (process.argv[1] = jiti.resolve(resolve(pwd, script)));
|
|
jiti(resolved);
|
|
|