25 lines
347 B
TypeScript
25 lines
347 B
TypeScript
|
// node native
|
||
|
import * as path from 'path';
|
||
|
import { promises as fs } from 'fs';
|
||
|
|
||
|
// @push.rocks scope
|
||
|
import * as smartpath from '@push.rocks/smartpath';
|
||
|
import * as smartfm from '@push.rocks/smartfm';
|
||
|
|
||
|
export {
|
||
|
smartpath,
|
||
|
smartfm,
|
||
|
}
|
||
|
|
||
|
// third-party
|
||
|
import * as vitepress from 'vitepress';
|
||
|
|
||
|
export {
|
||
|
fs,
|
||
|
path,
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
vitepress,
|
||
|
}
|