From b31c5033a9c1509af445a2b0effcced0850d914d Mon Sep 17 00:00:00 2001 From: LongYinan Date: Fri, 15 Aug 2025 13:54:47 -0700 Subject: [PATCH 1/2] chore: remove duplicated lockfile (#2336) --- package-lock.json | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index bb67c75258..0000000000 --- a/package-lock.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "codex-monorepo", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "codex-monorepo", - "devDependencies": { - "prettier": "^3.5.3" - }, - "engines": { - "node": ">=22", - "pnpm": ">=9.0.0" - } - }, - "node_modules/prettier": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", - "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - } - } -} From 01aeaadcfcb36ec180397a8d95494b9ee8031138 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 15 Aug 2025 14:34:13 -0700 Subject: [PATCH 2/2] fix: include an entry for windows-x86_64 in the generated DotSlash file --- .github/dotslash-config.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dotslash-config.json b/.github/dotslash-config.json index 82b9eb93b3..f3b85b2b4b 100644 --- a/.github/dotslash-config.json +++ b/.github/dotslash-config.json @@ -17,6 +17,10 @@ "linux-aarch64": { "regex": "^codex-aarch64-unknown-linux-musl\\.zst$", "path": "codex" + }, + "windows-x86_64": { + "regex": "^codex-x86_64-pc-windows-msvc\\.exe\\.zst$", + "path": "codex.exe" } } }