Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump yarn JS package manager 1.22.22 to 4.9.4
This removes sha1 hashes from yarn.lock. Compliant with microsoft hashing.

This adds the yarn berry config / package files: .yarn/ project-local workspace and .yarnrc.yml berry config

Here we bootstrap yarnin devcontainer postCreate
  • Loading branch information
devcontainers-bot committed Sep 17, 2025
commit f35054d446589925d6dddfe1f33d32cf7657fa49
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/azure-cli:1": {}
},
"postCreateCommand": "npm install -g @devcontainers/cli",
"postCreateCommand": "corepack enable && corepack prepare yarn@4.9.4 --activate && npm install -g @devcontainers/cli",
"customizations": {
"vscode": {
"extensions": [
Expand Down
Binary file added .yarn/install-state.gz
Binary file not shown.
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"files": [
"src"
],
"devDependencies": {
"mkdirp": "0.5.5",
"copyfiles": "^2.4.1",
"handlebars": "^4.7.7",
"jsonc": "^2.0.0",
"rimraf": "^3.0.2"
}
}
"src"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"handlebars": "^4.7.7",
"jsonc": "^2.0.0",
"mkdirp": "0.5.5",
"rimraf": "^3.0.2"
}
}
Loading