fix(npm): pin typescript to 5.7.3

This commit is contained in:
matt1432 2025-03-02 13:46:50 -05:00
parent 605065eec7
commit 2f372718fb
12 changed files with 22 additions and 34 deletions
apps/update-sources/src

View file

@ -8,7 +8,10 @@ import { replaceInFile, npmRun } from './lib';
/* Constants */
const FLAKE = process.env.FLAKE as string;
const PINS = new Map([]);
const PINS = new Map([
// FIXME: https://github.com/typescript-eslint/typescript-eslint/pull/10903
['typescript', '5.7.3'],
]);
const updatePackageJson = async(workspaceDir: string, updates: object) => {