Skip to content

Commit 87011ca

Browse files
update bun to use text lockfile
1 parent eb50144 commit 87011ca

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

bun.lock

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"lockfileVersion": 1,
3+
"workspaces": {
4+
"": {
5+
"name": "advent-of-code",
6+
"devDependencies": {
7+
"@types/bun": "latest",
8+
},
9+
"peerDependencies": {
10+
"typescript": "5.3.3",
11+
},
12+
},
13+
"commons/ts": {
14+
"name": "aoc",
15+
},
16+
},
17+
"packages": {
18+
"@types/bun": ["@types/[email protected]", "", { "dependencies": { "bun-types": "1.2.1" } }, "sha512-iiCeMAKMkft8EPQJxSbpVRD0DKqrh91w40zunNajce3nMNNFd/LnAquVisSZC+UpTMjDwtcdyzbWct08IvEqRA=="],
19+
20+
"@types/node": ["@types/[email protected]", "", { "dependencies": { "undici-types": "~5.26.4" } }, "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ=="],
21+
22+
"@types/ws": ["@types/[email protected]", "", { "dependencies": { "@types/node": "*" } }, "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A=="],
23+
24+
"aoc": ["aoc@workspace:commons/ts"],
25+
26+
"bun-types": ["[email protected]", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-p7bmXUWmrPWxhcbFVk7oUXM5jAGt94URaoa3qf4mz43MEhNAo/ot1urzBqctgvuq7y9YxkuN51u+/qm4BiIsHw=="],
27+
28+
"typescript": ["[email protected]", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw=="],
29+
30+
"undici-types": ["[email protected]", "", {}, "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="],
31+
}
32+
}

bun.lockb

-3.72 KB
Binary file not shown.

scripts/language/ts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_command(self) -> list[str]:
2020

2121
@override
2222
def build_commands(self) -> list[list[str]]:
23-
return [["bun", "install"]]
23+
return [["bun", "install", "--save-text-lockfile"]]
2424

2525
@override
2626
def run_command(self, day: Day, run_args: list[str]) -> list[str]:

0 commit comments

Comments
 (0)