Feat/generator 3 iteration (#399)

* fix: vscode tasks and removed gulp files

* chore: cleanup deps and remove babel references

* chore: switch from cp to ncp
This commit is contained in:
Alessio Occhipinti 2019-12-24 11:28:38 +01:00 committed by Mattia Astorino
parent f11a9cda4c
commit 1ddcebf4c0
11 changed files with 28 additions and 1212 deletions

75
.vscode/tasks.json vendored
View file

@ -6,16 +6,15 @@
// ${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",
"command": "yarn",
"dependsOn": "tsc",
"label": "build",
"group": {
@ -23,76 +22,6 @@
"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": []
}
]
}