فهرست منبع

Merge launch configs

Alex Dima 3 سال پیش
والد
کامیت
423a55b305
2فایلهای تغییر یافته به همراه9 افزوده شده و 16 حذف شده
  1. 9 0
      .vscode/launch.json
  2. 0 16
      webpack-plugin/.vscode/launch.json

+ 9 - 0
.vscode/launch.json

@@ -29,6 +29,15 @@
 			"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
 			"args": ["website"],
 			"cwd": "${workspaceFolder}"
+		},
+		{
+			"type": "pwa-node",
+			"request": "launch",
+			"name": "webpack plugin test",
+			"skipFiles": ["<node_internals>/**"],
+			"program": "${workspaceFolder}/webpack-plugin/node_modules/.bin/webpack",
+			"args": ["--config", "test/webpack.config.js"],
+			"cwd": "${workspaceFolder}/webpack-plugin/"
 		}
 	]
 }

+ 0 - 16
webpack-plugin/.vscode/launch.json

@@ -1,16 +0,0 @@
-{
-	// 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",
-			"cwd": "${workspaceFolder}/test/",
-			"name": "Launch Program",
-			"program": "${workspaceFolder}/node_modules/.bin/webpack",
-			"args": ["--config", "webpack.config.js"]
-		}
-	]
-}