Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cowwoc committed Sep 4, 2024
1 parent f4d28ce commit 0666f78
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 95 deletions.
4 changes: 2 additions & 2 deletions build/Project.mts
Original file line number Diff line number Diff line change
Expand Up @@ -377,12 +377,12 @@ class Project
private async watchFiles(paths: string | ReadonlyArray<string>,
callback: (sources: string[]) => Promise<void>): Promise<void>
{
const changes: Set<string> = new Set();
const changes: Set<string> = new Set<string>();
const project = this;

async function processUpdate()
{
const filesToProcess = new Set(changes);
const filesToProcess = new Set<string>(changes);
const posixPaths = [];
for (const changed of filesToProcess)
{
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"sideEffects": false,
"dependencies": {
"chalk": "^5.3.0",
"diff": "6.0.0-beta",
"diff": "6.0.0",
"lodash.isequal": "^4.5.0"
},
"license": "Apache-2.0",
Expand All @@ -51,11 +51,11 @@
"@types/lodash.isequal": "^4.5.8",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"@types/node": "^22.5.3",
"@types/rollup-plugin-node-globals": "^1.4.4",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"browser-sync": "^3.0.2",
"c8": "^10.1.2",
"chai": "^5.1.1",
Expand Down Expand Up @@ -84,7 +84,7 @@
"typedoc": "^0.26.6",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"typescript-eslint": "^8.4.0",
"winston": "^3.14.2"
}
}
Loading

0 comments on commit 0666f78

Please sign in to comment.