File tree Expand file tree Collapse file tree 5 files changed +49
-1
lines changed
Expand file tree Collapse file tree 5 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/devcontainers/typescript-node:1-18-bookworm
2+ # Install the xz-utils package
3+ RUN apt-get update && apt-get install -y libpango1.0-dev
Original file line number Diff line number Diff line change 1+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+ // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
3+ {
4+ "name" : " Pybricks Code" ,
5+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+ "build" : {
7+ // Path is relative to the devcontainer.json file.
8+ "dockerfile" : " Dockerfile"
9+ },
10+
11+ // Features to add to the dev container. More info: https://containers.dev/features.
12+ // "features": {},
13+
14+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
15+ // "forwardPorts": [],
16+
17+ // Use 'postCreateCommand' to run commands after the container is created.
18+ "postCreateCommand" : " yarn" ,
19+
20+ // Configure tool-specific properties.
21+ "customizations" : {
22+ "vscode" : {
23+ "extensions" : [
24+ " dbaeumer.vscode-eslint" ,
25+ " esbenp.prettier-vscode" ,
26+ " psioniq.psi-header"
27+ ]
28+ }
29+ }
30+
31+ // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
32+ // "remoteUser": "root"
33+ }
Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for more information:
4+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+ # https://containers.dev/guide/dependabot
6+
17version : 2
28updates :
39- package-ecosystem : npm
@@ -9,3 +15,7 @@ updates:
915 - dependency-name : " @types/node"
1016 versions :
1117 - " >= 19.a"
18+ - package-ecosystem : " devcontainers"
19+ directory : " /"
20+ schedule :
21+ interval : weekly
Original file line number Diff line number Diff line change 1212 "editor.defaultFormatter" : " esbenp.prettier-vscode"
1313 },
1414 "editor.codeActionsOnSave" : {
15- "source.fixAll.eslint" : true
15+ "source.fixAll.eslint" : " explicit "
1616 },
1717 "eslint.validate" : [
1818 " javascript" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ will do nice things like automatically format the code for you.
1616
1717These are the required software tools you need to install on your computer.
1818
19+ Alternatly, you can use a devcontainer locally via Docker or using GitHub Codespaces.
20+
1921### Node.js
2022
2123We are using [ Node.js] [ node ] v18.x. We recommend using a tool such as [ asdf] [ asdf ]
You can’t perform that action at this time.
0 commit comments