Delete unused files, add package-lock.json

This commit is contained in:
Christian Georgi
2020-02-04 12:20:09 +00:00
parent cbb27132ec
commit 4030173bbc
60 changed files with 6265 additions and 1319 deletions

18
.vscode/launch.json vendored
View File

@@ -9,8 +9,16 @@
"request": "launch",
"type": "node",
"runtimeExecutable": "npx",
"runtimeArgs": ["-n"],
"args": ["--", "cds", "run", "--with-mocks", "--in-memory"], // the leading "--" arg ensures it works with as well as without debugging
"runtimeArgs": [
"-n"
],
"args": [
"--",
"cds",
"run",
"--with-mocks",
"--in-memory"
], // the leading "--" arg ensures it works with as well as without debugging
"cwd": "${workspaceFolder}/packages/${input:service}",
"console": "integratedTerminal",
"serverReadyAction": {
@@ -18,7 +26,9 @@
"uriFormat": "http://localhost:%s",
"action": "openExternally"
},
"skipFiles": ["<node_internals>/**"]
"skipFiles": [
"<node_internals>/**"
]
}
],
"inputs": [
@@ -39,4 +49,4 @@
"default": "bookshop"
}
]
}
}