mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 03:39:30 +08:00
16 lines
376 B
JavaScript
Executable file
16 lines
376 B
JavaScript
Executable file
#!/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)
|