From cbc4bbc71f4e619747707b1b9649abedfa234145 Mon Sep 17 00:00:00 2001 From: uki00a Date: Sat, 4 Jan 2020 18:26:57 +0900 Subject: [PATCH] fix(std/encoding/yaml): export parseAll (#3592) --- std/encoding/yaml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts index 9abe30b4b0..a8784319b3 100644 --- a/std/encoding/yaml.ts +++ b/std/encoding/yaml.ts @@ -3,7 +3,7 @@ // Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -export { ParseOptions, parse } from "./yaml/parse.ts"; +export { ParseOptions, parse, parseAll } from "./yaml/parse.ts"; export { DumpOptions as StringifyOptions, stringify