You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/javascript-node/.devcontainer/base.Dockerfile
2
+
3
+
# [Choice] Node.js version: 16, 14, 12
4
+
ARG VARIANT="16-buster"
5
+
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
6
+
7
+
# [Optional] Uncomment this section to install additional OS packages.
8
+
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,17 @@
1
1
## Angular Snippets Changelog
2
2
3
+
<aname="12.0.0"></a>
4
+
5
+
# 12.0.0 (2021-05-24)
6
+
7
+
- merged PR for adding trailing commas to route snippets
8
+
- minor updates for v12
9
+
- added devcontainer
10
+
3
11
<aname="11.0.0"></a>
4
12
5
13
# 11.0.0 (2020-12-08)
6
14
7
-
-
8
15
- The old faulty implementation in the typescript.json did use a switchMap which would lead to problematic behavior. Replaced it with the map operator. Closes #113
0 commit comments