Skip to content

Commit 284cb63

Browse files
committed
Upgrade dependencies: 2.0.0-beta-4
1 parent b280f62 commit 284cb63

File tree

9 files changed

+3466
-2830
lines changed

9 files changed

+3466
-2830
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2021 Jacobo Tabernero - github.com/jacoborus
3+
Copyright (c) 2016-2022 Jacobo Tabernero - github.com/jacoborus
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

bundler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { bundle } from "https://deno.land/x/buckets@v0.4.0/mod.ts";
1+
import { bundle } from "https://deno.land/x/buckets@v0.5.0/mod.ts";
22

33
const content = await bundle("./estilo.ts");
44
Deno.writeTextFileSync("dist/estilo.js", content);

deno.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"test": {
3+
"files": {
4+
"include": ["src/"],
5+
"exclude": ["src/testdata/"]
6+
}
7+
},
8+
"tasks": {
9+
"bundle": "deno run --allow-read --allow-write --allow-net --allow-env bundler.ts",
10+
"install": "deno install --allow-read --allow-write --allow-net --allow-env dist/estilo.js"
11+
}
12+
}

deps.ts

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,39 @@
1+
export { default as version } from "./version.ts";
2+
13
export { render } from "https://deno.land/x/[email protected]/mod.ts";
24

3-
export { default as version } from "./version.ts";
5+
export { basename, resolve } from "https://deno.land/[email protected]/path/mod.ts";
46

5-
export { basename, resolve } from "https://deno.land/std@0.101.0/path/mod.ts";
7+
export type { WalkOptions } from "https://deno.land/std@0.163.0/fs/mod.ts";
68
export {
79
ensureDirSync,
810
existsSync,
9-
} from "https://deno.land/[email protected]/fs/mod.ts";
11+
walkSync,
12+
} from "https://deno.land/[email protected]/fs/mod.ts";
1013

11-
export type { ValidateResult } from "https://deno.land/x/cliffy@v0.19.3/prompt/mod.ts";
14+
export type { ValidateResult } from "https://deno.land/x/cliffy@v0.25.4/prompt/mod.ts";
1215

1316
export {
1417
Checkbox,
1518
Input,
1619
prompt,
17-
} from "https://deno.land/x/cliffy@v0.19.3/prompt/mod.ts";
20+
} from "https://deno.land/x/cliffy@v0.25.4/prompt/mod.ts";
1821

1922
export {
2023
Command,
2124
HelpCommand,
22-
} from "https://deno.land/x/cliffy@v0.19.3/command/mod.ts";
25+
} from "https://deno.land/x/cliffy@v0.25.4/command/mod.ts";
2326

2427
export {
2528
parse as yamlParse,
2629
parseAll as yamlParseAll,
2730
stringify as yamlStringify,
28-
} from "https://deno.land/std@0.97.0/encoding/yaml.ts";
31+
} from "https://deno.land/std@0.163.0/encoding/yaml.ts";
2932

3033
export {
3134
green,
3235
red,
3336
yellow,
34-
} from "https://deno.land/std@0.101.0/fmt/colors.ts";
37+
} from "https://deno.land/std@0.163.0/fmt/colors.ts";
3538

3639
export { hexterm } from "https://raw.githubusercontent.com/jacoborus/hexterm/master/src/hexterm.ts";

0 commit comments

Comments
 (0)