Compare commits

...

4 Commits

Author SHA1 Message Date
6bbfd8b8a5 2.1.20 2020-03-09 15:20:48 +00:00
9e6ab262ed fix(core): update 2020-03-09 15:20:47 +00:00
58246c406d 2.1.19 2020-03-09 15:15:52 +00:00
345df135b9 fix(core): update 2020-03-09 15:15:52 +00:00
3 changed files with 4 additions and 4 deletions

2
package-lock.json generated
View File

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

View File

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

View File

@ -34,8 +34,8 @@ tsbuildCli.addCommand('custom').subscribe(async argvArg => {
tsbuildCli.addCommand('element').subscribe(async argvArg => {
await tsbuild.compileGlobStringObject({
"./ts_web": "dist_ts_web"
}, {}, process.cwd(), argvArg);
"./ts_web/**/*.ts": "dist_ts_web"
}, {}, process.cwd(), {web: true});
});
tsbuildCli.startParse();