Skip to content

Commit

Permalink
Bump Dev Dependencies (#1528)
Browse files Browse the repository at this point in the history
* Bump stuff

* Bump stuff and revert ts to fix ts expect error

* Bump micromatch because vuln

* Remove dependency
  • Loading branch information
MarvNC authored Oct 27, 2024
1 parent b523711 commit 8e6ce42
Show file tree
Hide file tree
Showing 6 changed files with 655 additions and 386 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
],
"url": "/ext/data/schemas/recommended-dictionaries-schema.json"
}
]
],
"typescript.tsdk": "node_modules\\typescript\\lib"
}
1 change: 1 addition & 0 deletions ext/js/core/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ export function deferPromise() {
let resolve;
/** @type {((reason?: import('core').RejectionReason) => void)|undefined} */
let reject;
/** @type {Promise<T>} */
const promise = new Promise((resolve2, reject2) => {
resolve = resolve2;
reject = reject2;
Expand Down
1 change: 1 addition & 0 deletions ext/js/dictionary/dictionary-data-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export function groupKanjiFrequencies(sourceFrequencies) {
export function getGroupedPronunciations(dictionaryEntry) {
const {headwords, pronunciations: termPronunciations} = dictionaryEntry;

/** @type {Set<string>} */
const allTerms = new Set();
const allReadings = new Set();
/** @type {Map<string, string>} */
Expand Down
Loading

0 comments on commit 8e6ce42

Please sign in to comment.