vsc-material-theme/.vscode/tasks.json
Alessio Occhipinti d9ea7c2ea6 Feat/release note webview (#248)
* chore(deps): update dependencies

* chore: renamed custom-settings interface

* WIP: added new Webview handler main class

* WIP: added support for Settings webview

* WIP (webview): added gulp command for copying ui files

* WIP (preview): scripts for building updated

* chore: gitignore

* chore: switched to babel-preset-env and added browserify for bundling

* chore: small changes to webviews (added external interfaces file)

* chore: added new task on task explorer and small fix copy ui task

* WIP: webview HTML, JS and CSS added and ready to be developed

* chore: Test native elements

* chore(release): 2.3.0

* chore: init added release notes webview

* chore: Removed unused import

* chore: fixed build release-notes

* chore: Add release notes template

* chore: Update release notes

* chore: Update release notes template

* chore: Update release notes style

* Create stale.yml

* chore: Update release notes

* chore: Removed show-changelog command
2018-08-29 21:30:40 +02:00

98 lines
2 KiB
JSON

// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process
// A task runner that calls a custom npm script that compiles the extension.
{
"version": "2.0.0",
// tasks list (build, build-theme, semver etc)
"tasks": [
{
"args": [
"run",
"build"
],
"command": "npm",
"dependsOn": "tsc",
"label": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"linux": {
"args": [
".",
"-name",
"\"*.js\"",
"-not",
"-path",
"\"./node_modules/*\"",
"-not",
"-path",
"\"./src/*\"",
"-not",
"-path",
"\"./test/*\"",
"-type",
"f",
"-delete"
],
"command": "find"
},
"osx": {
"args": [
".",
"-name",
"\"*.js\"",
"-not",
"-path",
"\"./node_modules/*\"",
"-not",
"-path",
"\"./src/*\"",
"-not",
"-path",
"\"./test/*\"",
"-type",
"f",
"-delete"
],
"command": "find"
},
"command": "",
"label": "clean project"
},
{
"args": [
"run",
"changelog"
],
"command": "npm",
"label": "changelog"
},
{
"args": [
"run",
"build-ts"
],
"command": "npm",
"dependsOn": "clean project",
"label": "tsc"
},
{
"args": [
"run",
"build-ui-only"
],
"command": "npm",
"label": "UI: build UI only",
"problemMatcher": []
}
]
}