29 lines
439 B
TypeScript
29 lines
439 B
TypeScript
// node native
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
fs,
|
|
path
|
|
}
|
|
|
|
// @pushrocks scope
|
|
import * as lik from '@push.rocks/lik';
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
import * as smartrx from '@push.rocks/smartrx';
|
|
|
|
export {
|
|
lik,
|
|
smartpromise,
|
|
smartrx
|
|
}
|
|
|
|
// thirdparty scope
|
|
import * as chokidar from 'chokidar';
|
|
import picomatch from 'picomatch';
|
|
|
|
export {
|
|
chokidar,
|
|
picomatch,
|
|
}
|