smartchok/ts/smartchok.plugins.ts

28 lines
407 B
TypeScript
Raw Permalink Normal View History

2021-11-29 19:26:59 +00:00
// node native
2021-12-01 01:04:21 +00:00
import * as fs from 'fs';
2021-11-29 19:26:59 +00:00
import * as path from 'path';
export {
2021-12-01 01:04:21 +00:00
fs,
2021-11-29 19:26:59 +00:00
path
}
// @pushrocks scope
2024-01-28 00:18:39 +00:00
import * as lik from '@push.rocks/lik';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
2021-11-29 19:26:59 +00:00
export {
lik,
smartpromise,
smartrx
}
// thirdparty scope
2024-01-28 00:23:59 +00:00
// @ts-nocheck
2024-01-28 01:11:49 +00:00
import watcher from '@tempfix/watcher';
2021-11-29 19:26:59 +00:00
export {
2024-01-28 00:18:39 +00:00
watcher,
}