smartgit/ts/smartgit.plugins.ts

20 lines
589 B
TypeScript
Raw Normal View History

2019-06-18 13:17:50 +00:00
// node native
import * as path from 'path';
export { path };
2023-07-27 11:45:48 +00:00
import * as smartenv from '@push.rocks/smartenv';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartstring from '@push.rocks/smartstring';
import * as smarttime from '@push.rocks/smarttime';
2019-06-18 13:17:50 +00:00
export { smartenv, smartfile, smartpath, smartpromise, smartstring, smarttime };
2019-06-18 13:17:50 +00:00
// third party
2024-06-22 00:44:19 +00:00
import * as diff from 'diff';
import isomorphicGit from 'isomorphic-git';
2019-06-18 13:17:50 +00:00
2024-06-22 00:44:19 +00:00
export { diff, isomorphicGit };