Skip to content

Commit

Permalink
Merge pull request #1208 from embroider-build/update-deps
Browse files Browse the repository at this point in the history
Rebuilding yarn.lock
  • Loading branch information
ef4 committed May 22, 2022
2 parents fbbaad7 + b39e538 commit 6eee45c
Show file tree
Hide file tree
Showing 3 changed files with 1,849 additions and 1,708 deletions.
5 changes: 2 additions & 3 deletions package.json
Expand Up @@ -38,8 +38,7 @@
},
"resolutions": {
"**/browserslist": "^4.14.0",
"**/qunit": "^2.14.1",
"scenario-tester/fixturify-project": "4.1.0"
"**/qunit": "^2.14.1"
},
"devDependencies": {
"@types/jest": "^24.0.0",
Expand Down Expand Up @@ -88,7 +87,7 @@
"npm": false
},
"volta": {
"node": "12.22.5",
"node": "14.19.3",
"yarn": "1.22.11"
},
"version": "1.6.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/compat/src/audit/babel-visitor.ts
Expand Up @@ -161,9 +161,9 @@ export class CodeFrameStorage {
private codeFrames = [] as { rawSourceIndex: number; loc: SourceLocation }[];
private rawSources = [] as string[];

forSource(rawSource: string): (node: { loc: SourceLocation | null }) => number | undefined {
forSource(rawSource: string): (node: { loc?: SourceLocation | null }) => number | undefined {
let rawSourceIndex: number | undefined;
return (node: { loc: SourceLocation | null }) => {
return (node: { loc?: SourceLocation | null | undefined }) => {
let loc = node.loc;
if (!loc) {
return;
Expand Down

0 comments on commit 6eee45c

Please sign in to comment.