-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deno stdlib in hopes of fixing parse err
- Loading branch information
Showing
4 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
}, | ||
"imports": { | ||
"is-what": "https://deno.land/x/[email protected]/src/index.ts", | ||
"deno/": "https://deno.land/std@0.196.0/", | ||
"deno/": "https://deno.land/std@0.224.0/", | ||
"outdent": "https://deno.land/x/[email protected]/mod.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
import * as is_what from "https://deno.land/x/[email protected]/src/index.ts" | ||
import * as is_what from "is-what" | ||
export { is_what } | ||
|
||
import { type PlainObject } from "https://deno.land/x/[email protected]/src/index.ts" | ||
import { type PlainObject } from "is-what" | ||
export type { PlainObject } | ||
|
||
import * as outdent from "https://deno.land/x/outdent@v0.8.0/mod.ts" | ||
import * as outdent from "outdent" | ||
export { outdent } | ||
|
||
// importing super specifically to reduce final npm bundle size | ||
import * as crypto from "https://deno.land/[email protected]/crypto/mod.ts" | ||
import { moveSync } from "https://deno.land/[email protected]/fs/move.ts" | ||
import { readLines } from "https://deno.land/[email protected]/io/read_lines.ts" | ||
import { writeAll } from "https://deno.land/[email protected]/streams/write_all.ts" | ||
import { parse as parseYaml } from "https://deno.land/[email protected]/yaml/parse.ts" | ||
import { SEP } from "https://deno.land/[email protected]/path/mod.ts" | ||
import { fromFileUrl } from "https://deno.land/[email protected]/path/mod.ts" | ||
import * as crypto from "deno/crypto/mod.ts" | ||
import { moveSync } from "deno/fs/move.ts" | ||
import { readLines } from "deno/io/read_lines.ts" | ||
const writeAll = Deno.writeAll | ||
import { parse as parseYaml } from "deno/yaml/parse.ts" | ||
import { SEPARATOR as SEP } from "deno/path/mod.ts" | ||
import { fromFileUrl } from "deno/path/mod.ts" | ||
|
||
const streams = { writeAll } | ||
const io = { readLines } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters