Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
649ca48d03 | |||
abc515c742 | |||
1eb2b727aa |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbuild",
|
"name": "@gitzone/tsbuild",
|
||||||
"version": "2.1.6",
|
"version": "2.1.8",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tsbuild",
|
"name": "@gitzone/tsbuild",
|
||||||
"version": "2.1.6",
|
"version": "2.1.8",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "TypeScript nightly to easily make use of latest features",
|
"description": "TypeScript nightly to easily make use of latest features",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -27,7 +27,7 @@ tsbuildCli.addCommand('custom').subscribe(argvArg => {
|
|||||||
listedDirectories.shift();
|
listedDirectories.shift();
|
||||||
const compilationCommandObject: {[key: string]: string} = {};
|
const compilationCommandObject: {[key: string]: string} = {};
|
||||||
for (const directory of listedDirectories) {
|
for (const directory of listedDirectories) {
|
||||||
compilationCommandObject['./' + directory] = './dist_' + directory;
|
compilationCommandObject[`./${directory}/**/*.ts`] = `./dist_${directory}`;
|
||||||
};
|
};
|
||||||
tsbuild.compileGlobStringObject(
|
tsbuild.compileGlobStringObject(
|
||||||
compilationCommandObject,
|
compilationCommandObject,
|
||||||
|
Reference in New Issue
Block a user