Skip to content

Commit 600165f

Browse files
committed
v0.12.15
Fix Show Topics in slave component Run prettier
1 parent 3790a0e commit 600165f

File tree

21 files changed

+1027
-1084
lines changed

21 files changed

+1027
-1084
lines changed

.vscode/launch.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
{
2-
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
3-
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
4-
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
2+
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
3+
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
4+
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
77
{
8-
"name": "ng serve",
9-
"request": "launch",
10-
"type": "chrome",
11-
"preLaunchTask": "npm: start",
12-
"postDebugTask": "npm: stop",
13-
"url": "http://localhost:4200",
8+
"name": "ng serve",
9+
"request": "launch",
10+
"type": "chrome",
11+
"preLaunchTask": "npm: start",
12+
"postDebugTask": "npm: stop",
13+
"url": "http://localhost:4200"
1414
},
15-
{
16-
"type": "node",
17-
"name": "vscode-jest-tests.v2.angular",
18-
"request": "launch",
19-
"args": [
20-
"--runInBand",
21-
"--watchAll=false",
22-
"--testNamePattern",
23-
"${jest.testNamePattern}",
24-
"--runTestsByPath",
25-
"${jest.testFile}"
26-
],
27-
"cwd": "${workspaceFolder}",
28-
"console": "integratedTerminal",
29-
"internalConsoleOptions": "neverOpen",
30-
"program": "${workspaceFolder}/node_modules/.bin/jest",
31-
"windows": {
32-
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
33-
}
34-
}
35-
]
36-
}
15+
{
16+
"type": "node",
17+
"name": "vscode-jest-tests.v2.angular",
18+
"request": "launch",
19+
"args": [
20+
"--runInBand",
21+
"--watchAll=false",
22+
"--testNamePattern",
23+
"${jest.testNamePattern}",
24+
"--runTestsByPath",
25+
"${jest.testFile}"
26+
],
27+
"cwd": "${workspaceFolder}",
28+
"console": "integratedTerminal",
29+
"internalConsoleOptions": "neverOpen",
30+
"program": "${workspaceFolder}/node_modules/.bin/jest",
31+
"windows": {
32+
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
33+
}
34+
}
35+
]
36+
}

.vscode/tasks.json

Lines changed: 66 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,67 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"type": "npm",
6-
"script": "ng",
7-
"problemMatcher": [],
8-
"label": "npm: ng",
9-
"detail": "ng"
10-
},
11-
{
12-
"type": "npm",
13-
"script": "build",
14-
"group": "build",
15-
"problemMatcher": [],
16-
"label": "npm: build",
17-
"detail": "ng build "
18-
},
19-
{
20-
"type": "npm",
21-
"script": "build.ui.dev",
22-
"group": "build",
23-
"problemMatcher": [],
24-
"label": "npm: build.ui.dev",
25-
"detail": "ng build --configuration development"
26-
},
27-
{
28-
"type": "npm",
29-
"script": "test-debug",
30-
"problemMatcher": [],
31-
"label": "npm: test-debug",
32-
"detail": "ng test --browsers ChromeDebug --karma-config ./karma.conf.ts"
33-
},
34-
{
35-
"type": "npm",
36-
"script": "start",
37-
"problemMatcher": [
38-
{
39-
"base": "$tsc",
40-
"pattern": {
41-
"regexp": "^(Error:\\s+)?([^:]*):(\\d+)[,:](\\d+)\\s-\\s(error|warning|info)\\s+TS(\\d+)\\s*:\\s*(.*)$",
42-
"file": 2,
43-
"line": 3,
44-
"column": 4,
45-
"severity": 5,
46-
"code": 6,
47-
"message": 7
48-
}
49-
},
50-
{
51-
"owner": "typescript",
52-
"pattern": "$tsc",
53-
"background": {
54-
"activeOnStart": true,
55-
"beginsPattern": {
56-
"regexp": "(.*?)"
57-
},
58-
"endsPattern": {
59-
"regexp": "bundle generation complete"
60-
}
61-
}
62-
}
63-
],
64-
"isBackground": true
65-
}
66-
67-
]
68-
}
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "ng",
7+
"problemMatcher": [],
8+
"label": "npm: ng",
9+
"detail": "ng"
10+
},
11+
{
12+
"type": "npm",
13+
"script": "build",
14+
"group": "build",
15+
"problemMatcher": [],
16+
"label": "npm: build",
17+
"detail": "ng build "
18+
},
19+
{
20+
"type": "npm",
21+
"script": "build.ui.dev",
22+
"group": "build",
23+
"problemMatcher": [],
24+
"label": "npm: build.ui.dev",
25+
"detail": "ng build --configuration development"
26+
},
27+
{
28+
"type": "npm",
29+
"script": "test-debug",
30+
"problemMatcher": [],
31+
"label": "npm: test-debug",
32+
"detail": "ng test --browsers ChromeDebug --karma-config ./karma.conf.ts"
33+
},
34+
{
35+
"type": "npm",
36+
"script": "start",
37+
"problemMatcher": [
38+
{
39+
"base": "$tsc",
40+
"pattern": {
41+
"regexp": "^(Error:\\s+)?([^:]*):(\\d+)[,:](\\d+)\\s-\\s(error|warning|info)\\s+TS(\\d+)\\s*:\\s*(.*)$",
42+
"file": 2,
43+
"line": 3,
44+
"column": 4,
45+
"severity": 5,
46+
"code": 6,
47+
"message": 7
48+
}
49+
},
50+
{
51+
"owner": "typescript",
52+
"pattern": "$tsc",
53+
"background": {
54+
"activeOnStart": true,
55+
"beginsPattern": {
56+
"regexp": "(.*?)"
57+
},
58+
"endsPattern": {
59+
"regexp": "bundle generation complete"
60+
}
61+
}
62+
}
63+
],
64+
"isBackground": true
65+
}
66+
]
67+
}

angular.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@
1919
},
2020
"localize": true,
2121
"index": "src/index.html",
22-
"polyfills": [
23-
"zone.js",
24-
"@angular/localize/init"
25-
],
22+
"polyfills": ["zone.js", "@angular/localize/init"],
2623
"tsConfig": "tsconfig.json",
2724
"assets": ["src/assets/images", "src/assets"],
2825
"styles": ["src/styles.css"],

0 commit comments

Comments
 (0)