2018-04-08 23:03:39 +00:00
|
|
|
import * as plugins from './npmts.plugins';
|
2016-10-21 15:48:52 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
import { LazyModule } from 'smartsystem';
|
2016-10-21 15:48:52 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
import * as _modCompile from './mod_compile/index';
|
|
|
|
import * as _modDocs from './mod_docs/index';
|
|
|
|
import * as _modTest from './mod_test/index';
|
2016-10-21 15:48:52 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
export let modCompile = new LazyModule<typeof _modCompile>('./mod_compile/index', __dirname);
|
|
|
|
export let modDocs = new LazyModule<typeof _modDocs>('./mod_docs/index', __dirname);
|
|
|
|
export let modTest = new LazyModule<typeof _modTest>('./mod_test/index', __dirname);
|