Files
lodestar/.devcontainer/devcontainer.json
Nazar Hussain 847837ed1c chore: migrate yarn 1 to pnpm (#8646)
**Motivation**

Use the latest package manager which is more aligned with multi-runtime
support.

**Description**

- Migrate yarn.lock file to pnpm-lock.yaml (`pnpm import`)
- Update the scripts to use pnpm 
- Update the workflows to use pnpm

**Steps to test or reproduce**

- Run all tests

**Useful commands migraiton**

| Yarn 1 | pnpm | 
|---|---| 
| yarn | pnpm install | 
| yarn add dep | pnpm add dep | 
| yarn workspace "@lodestar/config" add dep | pnpm add dep --filter
"@lodestar/config" |
| yarn workspace foreach run build | pnpm -r build |
2026-01-12 09:35:24 +07:00

26 lines
976 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-24-bullseye",
"features": {
"ghcr.io/devcontainers/features/python:1": {}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pnpm install",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}