-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdeps.ts
19 lines (16 loc) · 857 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Deno std
export { writeAllSync } from "https://deno.land/[email protected]/io/util.ts";
export { BufReader, readLines } from "https://deno.land/[email protected]/io/bufio.ts";
export {
dirname,
join,
resolve,
} from "https://deno.land/[email protected]/path/mod.ts";
export { existsSync } from "https://deno.land/[email protected]/fs/mod.ts";
export { v4 } from "https://deno.land/std/uuid/mod.ts";
export { EventEmitter } from "https://deno.land/[email protected]/node/events.ts";
// Other
export { default as updater } from "https://cdn.skypack.dev/[email protected]";
// Custom
export { matches } from "https://raw.githubusercontent.com/denyncrawford/safe-filter/9166edde2be3dbbf519af3ac0ac33af43e7b619b/dist/index.js";
export { default as project } from "https://raw.githubusercontent.com/denyncrawford/mongo-project.node/35264536b10defe47bfce6d4b5693776f05b39e5/dist/bundle.js";