Skip to content

Commit 008b9f1

Browse files
committed
build: bugfix typings + bump version
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();
1 parent 45408ac commit 008b9f1

File tree

3 files changed

+9389
-1677
lines changed

3 files changed

+9389
-1677
lines changed

src/engine/engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ async function publishViaGhPages(
269269
return reject(error);
270270
}
271271

272-
resolve();
272+
resolve(undefined);
273273
});
274274
});
275275
}

0 commit comments

Comments
 (0)