-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(repo): update
devcontainer.json
to use latest Node LTS (20.x.x)…
… and improved initial setup
- Loading branch information
Showing
3 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
# Update the underlying (Debian) OS, to make sure we have the latest security patches and libraries like 'GLIBC' | ||
sudo apt-get update && sudo apt-get -y upgrade | ||
|
||
# Update pnpm | ||
#npm install -g pnpm | ||
|
||
# Install dependencies | ||
pnpm install --frozen-lockfile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,6 @@ graph/client/src/assets/generated-task-graphs | |
/.env | ||
CODEOWNERS | ||
|
||
/.nx/cache | ||
/.nx/cache | ||
|
||
.pnpm-store |