feat(core): new tools scope

This commit is contained in:
2018-06-07 22:41:25 +02:00
parent 82b6654b94
commit f01e275044
29 changed files with 1841 additions and 1406 deletions

View File

@ -1,12 +1,12 @@
import { expect, tap } from 'tapbundle'
import { expect, tap } from 'tapbundle';
import * as npmgInstall from '../dist/npmg.install'
import * as smartenv from 'smartenv'
import * as npmgInstall from '../ts/tools.install';
import * as smartenv from 'smartenv';
let environment = new smartenv.Smartenv()
let environment = new smartenv.Smartenv();
tap.test("should install default list globally when parsed 'default' as argument", async () => {
await npmgInstall.install('default')
})
await npmgInstall.install('default');
});
tap.start()
tap.start();