From 433f6978c474c8af4bcb32ea77e8efc002f7705c Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Mon, 30 Apr 2018 10:17:49 +0200 Subject: [PATCH] chore: Update vsc tasks --- .vscode/tasks.json | 9 +++++++++ package.json | 1 + 2 files changed, 10 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1e42afc..d275994 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -75,6 +75,15 @@ ], "command": "npm", "label": "changelog" + }, + { + "args": [ + "run", + "build-ts" + ], + "command": "npm", + "dependsOn": "clean project", + "label": "tsc" } ] } \ No newline at end of file diff --git a/package.json b/package.json index a8eb83e..92c104f 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,7 @@ "build-icons-accents": "yarn gulp build:icons.accents", "build-icons-variants": "yarn gulp build:icons.variants", "build-themes": "yarn gulp build:themes", + "build-ts": "tsc -p ./tsconfig.json", "release": "standard-version", "postinstall": "node ./node_modules/vscode/bin/install && opencollective postinstall && tsc -p tsconfig.json" },