Skip to content

Commit

Permalink
fix types in embroider/core
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Jan 21, 2025
1 parent 9aca8c2 commit a535d44
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"main": "src/index.js",
"typesVersions": {
"*": {
"virtual": ["types/virtual"]
"virtual": [
"types/virtual"
]
}
},
"files": [
Expand Down Expand Up @@ -67,6 +69,7 @@
"@types/jsdom": "^16.2.11",
"@types/lodash": "^4.14.170",
"@types/node": "^22.9.3",
"@types/qunit": "^2.19.12",
"@types/resolve": "^1.20.0",
"@types/semver": "^7.3.5",
"@types/tmp": "^0.1.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/messages.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import makeDebug from 'debug';
import { format } from 'util';
// @ts-expect-error we can't import the NestedHooks from qunit here
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import type qunit from 'qunit';

const todo = makeDebug('embroider:todo');
const unsupported = makeDebug('embroider:unsupported');
Expand Down
7 changes: 7 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a535d44

Please sign in to comment.