Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a9f5d79

Browse files
committedMar 7, 2024
Merge branch 'main' into feat/parser
2 parents d81445d + d18ffde commit a9f5d79

File tree

230 files changed

+8973
-7050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+8973
-7050
lines changed
 

‎.devcontainer/Dockerfile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/blob/v0.212.0/containers/javascript-node/.devcontainer/base.Dockerfile
2-
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
3-
ARG VARIANT="18-bullseye"
4-
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
2+
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node@sha256:4dbf8b626669df834ca18dbe4b0dc49fcd521b1e0c59b1e56ba47abb39364e2c
53

6-
# This section to install additional OS packages.
7-
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
8-
&& apt-get -y install --no-install-recommends bash-completion
4+
# Install fnm to manage Node.js versions
5+
RUN curl -fsSL https://fnm.vercel.app/install -o /tmp/install \
6+
&& chmod a+x /tmp/install \
7+
&& /tmp/install \
8+
&& rm /tmp/install
99

10-
RUN wget https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \
11-
&& unzip aws-sam-cli-linux-x86_64.zip -d sam-installation \
12-
&& sudo ./sam-installation/install \
13-
&& rm -rf sam-installation aws-sam-cli-linux-*
10+
# Install AWS SAM CLI
11+
RUN curl -LO https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-x86_64.zip \
12+
&& unzip -q aws-sam-cli-linux-x86_64.zip -d sam-installation \
13+
&& sudo ./sam-installation/install \
14+
&& rm -rf sam-installation aws-sam-cli-linux-*

‎.devcontainer/devcontainer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88
// Append -bullseye or -buster to pin to an OS version.
99
// Use -bullseye variants on local arm64/Apple Silicon.
1010
"args": {
11-
"VARIANT": "18-bullseye"
11+
"VARIANT": "20-bullseye"
1212
}
1313
},
1414
"customizations": {
1515
// Add the ids of extensions you want installed when the container is created.
1616
"extensions": [
1717
"dbaeumer.vscode-eslint",
1818
"esbenp.prettier-vscode",
19-
"firsttris.vscode-jest-runner",
20-
"amazonwebservices.aws-toolkit-vscode"
19+
"firsttris.vscode-jest-runner"
2120
],
2221
"vscode": {
2322
"git.enableCommitSigning": true

0 commit comments

Comments
 (0)
Please sign in to comment.