Compare commits

..

2 Commits

Author SHA1 Message Date
c251bce006 2.1.63 2022-05-25 23:43:44 +02:00
f83b872f31 fix(core): update 2022-05-25 23:43:44 +02:00
4 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@gitzone/tsbuild", "name": "@gitzone/tsbuild",
"version": "2.1.62", "version": "2.1.63",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@gitzone/tsbuild", "name": "@gitzone/tsbuild",
"version": "2.1.62", "version": "2.1.63",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@pushrocks/early": "^4.0.2", "@pushrocks/early": "^4.0.2",

View File

@ -1,6 +1,6 @@
{ {
"name": "@gitzone/tsbuild", "name": "@gitzone/tsbuild",
"version": "2.1.62", "version": "2.1.63",
"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_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@gitzone/tsbuild', name: '@gitzone/tsbuild',
version: '2.1.62', version: '2.1.63',
description: 'TypeScript nightly to easily make use of latest features' description: 'TypeScript nightly to easily make use of latest features'
} }

View File

@ -40,11 +40,11 @@ export let compileGlobStringObject = async (
const absoluteFilePathArray: string[] = plugins.smartpath.transform.toAbsolute( const absoluteFilePathArray: string[] = plugins.smartpath.transform.toAbsolute(
fileTreeArray, fileTreeArray,
cwdArg cwdArg
); ) as string[];
const destDir: string = plugins.smartpath.transform.toAbsolute( const destDir: string = plugins.smartpath.transform.toAbsolute(
globStringObjectArg[keyArg], globStringObjectArg[keyArg],
cwdArg cwdArg
); ) as string;
tsOptionsArg = { tsOptionsArg = {
...tsOptionsArg, ...tsOptionsArg,
outDir: destDir, outDir: destDir,