Skip to content

Commit a6f82a9

Browse files
Merge branch 'main' into typescript_node_trixie
2 parents 662541c + 7e1df86 commit a6f82a9

File tree

8 files changed

+1054
-750
lines changed

8 files changed

+1054
-750
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
55
"ghcr.io/devcontainers/features/azure-cli:1": {}
66
},
7-
"postCreateCommand": "npm install -g @devcontainers/cli",
7+
"postCreateCommand": "corepack enable && corepack prepare yarn@4.9.4 --activate && npm install -g @devcontainers/cli",
88
"customizations": {
99
"vscode": {
1010
"extensions": [

.yarn/install-state.gz

29.7 KB
Binary file not shown.

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"files": [
3-
"src"
4-
],
5-
"devDependencies": {
6-
"mkdirp": "0.5.5",
7-
"copyfiles": "^2.4.1",
8-
"handlebars": "^4.7.7",
9-
"jsonc": "^2.0.0",
10-
"rimraf": "^3.0.2"
11-
}
12-
}
3+
"src"
4+
],
5+
"devDependencies": {
6+
"copyfiles": "^2.4.1",
7+
"handlebars": "^4.7.7",
8+
"jsonc": "^2.0.0",
9+
"mkdirp": "0.5.5",
10+
"rimraf": "^3.0.2"
11+
},
12+
"packageManager": "yarn@4.9.4"
13+
}
33.3 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"dependencies": {
33
"puppeteer": "^5.5.0"
4-
}
4+
},
5+
"packageManager": "yarn@4.9.4"
56
}

0 commit comments

Comments
 (0)