Merge pull request from elo7/async-preprocess

Change type of preprocessor functions to include Promise
pull/3416/head
Rich Harris 6 years ago committed by GitHub
commit 17a26edb5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ export interface PreprocessorGroup {
markup?: (options: {
content: string;
filename: string;
}) => Processed;
}) => Processed | Promise<Processed>;
style?: Preprocessor;
script?: Preprocessor;
}
@ -17,7 +17,7 @@ export type Preprocessor = (options: {
content: string;
attributes: Record<string, string | boolean>;
filename?: string;
}) => Processed;
}) => Processed | Promise<Processed>;
function parse_attributes(str: string) {
const attrs = {};

Loading…
Cancel
Save