Compare commits

...

2 Commits

Author SHA1 Message Date
abc515c742 2.1.7 2019-01-27 19:21:07 +01:00
1eb2b727aa fix(custom directory compilation): now picking up TypeScript files correctly 2019-01-27 19:21:07 +01:00
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -27,7 +27,7 @@ tsbuildCli.addCommand('custom').subscribe(argvArg => {
listedDirectories.shift();
const compilationCommandObject: {[key: string]: string} = {};
for (const directory of listedDirectories) {
compilationCommandObject['./' + directory] = './dist_' + directory;
compilationCommandObject[`./${directory}/**/*.ts`] = `./dist_${directory}`;
};
tsbuild.compileGlobStringObject(
compilationCommandObject,