Skip to content

Commit d3687df

Browse files
authored
Merge pull request #2 from alisaduncan/upgrade
Upgrade
2 parents 403121b + 3333749 commit d3687df

14 files changed

+8290
-2300
lines changed

.vscode/launch.json

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4-
{
5-
"name": "Launch Chrome against localhost",
6-
"type": "chrome",
7-
"request": "launch",
8-
"url": "http://localhost:4200",
9-
"sourceMaps": true,
10-
"webRoot": "${workspaceRoot}",
11-
"sourceMapPathOverrides": {
12-
"webpack:///./*": "${workspaceRoot}/*"
13-
}
14-
},
15-
{
16-
"name": "Attach to Chrome",
17-
"type": "chrome",
18-
"request": "attach",
19-
"port": 9222,
20-
"sourceMaps": true,
21-
"webRoot": "${workspaceRoot}"
22-
}
4+
{
5+
"name": "ng serve",
6+
"type": "chrome",
7+
"request": "launch",
8+
"url": "http://localhost:4200/#",
9+
"webRoot": "${workspaceRoot}"
10+
},
11+
{
12+
"name": "ng test",
13+
"type": "chrome",
14+
"request": "launch",
15+
"url": "http://localhost:9876/debug.html",
16+
"webRoot": "${workspaceRoot}"
17+
},
18+
{
19+
"name": "ng e2e",
20+
"type": "node",
21+
"request": "launch",
22+
"program": "${workspaceRoot}/node_modules/protractor/bin/protractor",
23+
"protocol": "inspector",
24+
"args": ["${workspaceRoot}/protractor.conf.js"]
25+
}
2326
]
24-
}
27+
}

0 commit comments

Comments
 (0)