mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-21 23:48:03 +00:00
10 lines
246 B
JavaScript
Executable File
10 lines
246 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { execNodeTs, logBin } from './util.mjs';
|
|
|
|
logBin('pezkuwi-run-node-ts');
|
|
|
|
execNodeTs(process.argv.slice(2).join(' '));
|