Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
out
*.vsix
node_modules
.DS_Store
.DS_Store
.vscode-test-web
8 changes: 2 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,14 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": "tsc-compile"
"outFiles": ["${workspaceRoot}/out/**/*.js"]
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}",
"--extensionTestsPath=${workspaceRoot}/out/test"
],
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
"stopOnEntry": false
}
]
Expand Down
24 changes: 10 additions & 14 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,24 @@
"search.exclude": {
"out": true
},
"peacock.color": "#1975d2",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#378fe7",
"activityBar.activeBorder": "#ab1460",
"activityBar.background": "#378fe7",
"activityBar.activeBackground": "#1975d2",
"activityBar.activeBorder": "#f18dbf",
"activityBar.background": "#1975d2",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#ab1460",
"activityBarBadge.foreground": "#e7e7e7",
"editorGroup.border": "#378fe7",
"panel.border": "#378fe7",
"sideBar.border": "#378fe7",
"activityBarBadge.background": "#f18dbf",
"activityBarBadge.foreground": "#15202b",
"sash.hoverBorder": "#1975d2",
"statusBar.background": "#1975d2",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#378fe7",
"statusBarItem.remoteBackground": "#1975d2",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#1975d2",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#1975d299",
"titleBar.inactiveForeground": "#e7e7e799",
"sash.hoverBorder": "#378fe7",
"statusBarItem.remoteBackground": "#1975d2",
"statusBarItem.remoteForeground": "#e7e7e7"
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.remoteColor": "1975d2"
"peacock.color": "1975d2"
}
43 changes: 0 additions & 43 deletions .vscode/tasks.json

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Angular Snippets Changelog

<a name="13.0.0"></a>

# 13.0.0 (2022-01-31)

- vscode.dev support
- minor v13 updates
- removed node express server generation so the extension can be supported in vscode for the web
- removed JSON schema validation for Web App Manifest
- added "open-in-browser" npm script to test the vscode.dev mode as shown in https://code.visualstudio.com/api/extension-guides/web-extensions#test-your-web-extension

<a name="12.0.0"></a>

# 12.0.0 (2021-05-24)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Angular TypeScript Snippets for VS Code

**Now Updated for Angular 12.0.0 release**
**Updated for Angular 13.0.0 release**

This extension for Visual Studio Code adds snippets for Angular for TypeScript and HTML.

Expand Down
Loading