Skip to content

Commit

Permalink
build: bugfix typings + bump version
Browse files Browse the repository at this point in the history
node_modules/ajv/dist/types/json-schema.d.ts:1:92 - error TS1005: '?' expected.

1 declare type StrictNullChecksWrapper<Name extends string, Type> = undefined extends null ? `strictNullChecks must be true in tsconfig to use ${Name}` : Type;

see ajv-validator/ajv#1930
--> using the same typescript version range as angularfire

engine/engine.ts:272:7 - error TS2794: Expected 1 arguments, but got 0. Did you forget to include 'void' in your type argument to 'Promise'?

272       resolve();
  • Loading branch information
JohannesHoppe committed Jul 26, 2022
1 parent 45408ac commit 008b9f1
Show file tree
Hide file tree
Showing 3 changed files with 9,389 additions and 1,677 deletions.
2 changes: 1 addition & 1 deletion src/engine/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ async function publishViaGhPages(
return reject(error);
}

resolve();
resolve(undefined);
});
});
}
Expand Down
Loading

0 comments on commit 008b9f1

Please sign in to comment.