Compare commits

...

2 Commits

Author SHA1 Message Date
31e99a0035 2.1.18 2020-03-09 15:14:07 +00:00
8aa3823e65 fix(core): update 2020-03-09 15:14:06 +00:00
4 changed files with 13 additions and 7 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.17",
"version": "2.1.18",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.17",
"version": "2.1.18",
"private": false,
"description": "TypeScript nightly to easily make use of latest features",
"main": "dist/index.js",

View File

@ -1,5 +1,5 @@
declare class test2 {
test: string[];
constructor();
test: string[];
constructor();
}
declare const run: () => Promise<string>;

View File

@ -6,7 +6,7 @@ const tsbuildCli = new plugins.smartcli.Smartcli();
/**
* the standard task compiles anything in ts/ directory to dist directory
*/
tsbuildCli.standardTask().subscribe(argvArg => {
tsbuildCli.standardTask().subscribe(async argvArg => {
if (process.env.CLI_CALL_TSBUILD === 'true') {
tsbuild.compileGlobStringObject(
{
@ -22,14 +22,20 @@ tsbuildCli.standardTask().subscribe(argvArg => {
/**
* the custom command compiles any customDir to dist_customDir
*/
tsbuildCli.addCommand('custom').subscribe(argvArg => {
tsbuildCli.addCommand('custom').subscribe(async argvArg => {
const listedDirectories = argvArg._;
listedDirectories.shift();
const compilationCommandObject: { [key: string]: string } = {};
for (const directory of listedDirectories) {
compilationCommandObject[`./${directory}/**/*.ts`] = `./dist_${directory}`;
}
tsbuild.compileGlobStringObject(compilationCommandObject, {}, process.cwd(), argvArg);
await tsbuild.compileGlobStringObject(compilationCommandObject, {}, process.cwd(), argvArg);
});
tsbuildCli.addCommand('element').subscribe(async argvArg => {
await tsbuild.compileGlobStringObject({
"./ts_web": "dist_ts_web"
}, {}, process.cwd(), argvArg);
});
tsbuildCli.startParse();