fix(core): update
This commit is contained in:
parent
71779693d7
commit
d1baa20aad
11
ts/index.ts
11
ts/index.ts
@ -1,11 +1,10 @@
|
||||
import * as plugins from './plugins.js';
|
||||
const __dirname = plugins.path.dirname(plugins.url.fileURLToPath(import.meta.url));
|
||||
|
||||
import { dirname } from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
|
||||
const __dirname = dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
export const runPath = async (pathArg: string) => {
|
||||
export const runPath = async (pathArg: string, fromFileUrl?: string) => {
|
||||
pathArg = fromFileUrl
|
||||
? plugins.path.join(plugins.path.dirname(plugins.url.fileURLToPath(fromFileUrl)), pathArg)
|
||||
: pathArg;
|
||||
await runCli(pathArg);
|
||||
};
|
||||
|
||||
|
@ -1,8 +1,10 @@
|
||||
// node native
|
||||
import * as path from 'path';
|
||||
import * as url from 'url';
|
||||
|
||||
export {
|
||||
path
|
||||
path,
|
||||
url
|
||||
}
|
||||
|
||||
// @pushrocks scope
|
||||
|
Loading…
Reference in New Issue
Block a user