More dependency upgrades

This commit is contained in:
Alex Dima 2019-02-19 13:07:47 +01:00
parent 440404716e
commit 43c84303ac
3 changed files with 101 additions and 161 deletions

27
.vscode/launch.json vendored
View file

@ -1,13 +1,13 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Gulp Release",
"name": "gulp release",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": [
@ -15,5 +15,16 @@
],
"cwd": "${workspaceFolder}"
},
]
{
"type": "node",
"request": "launch",
"name": "gulp website",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": [
"website"
],
"cwd": "${workspaceFolder}"
},
]
}