Skip to content

Commit bf188eb

Browse files
committed
chore: bump deps
1 parent c1c3de1 commit bf188eb

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
uses: actions/checkout@v2
1111

1212
- name: Setup latest deno version
13-
uses: denolib/setup-deno@v2
13+
uses: denoland/setup-deno@main
1414
with:
1515
deno-version: v1.x
1616

@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v2
2828

2929
- name: Setup latest deno version
30-
uses: denolib/setup-deno@v2
30+
uses: denoland/setup-deno@main
3131
with:
3232
deno-version: v1.x
3333

deps.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
// provide better logging, see src/log.ts
4-
export * as log from "https://deno.land/x/branch@0.1.5/mod.ts";
4+
export * as log from "https://deno.land/x/branch@0.1.6/mod.ts";
55

66
// colors for a pretty cli
77
export {
@@ -14,20 +14,20 @@ export {
1414
reset,
1515
setColorEnabled,
1616
yellow,
17-
} from "https://deno.land/std@0.85.0/fmt/colors.ts";
17+
} from "https://deno.land/std@0.99.0/fmt/colors.ts";
1818

1919
// configuration reading
2020
export {
2121
exists,
2222
existsSync,
2323
walk, // ... and one type of file monitoring
24-
} from "https://deno.land/std@0.85.0/fs/mod.ts";
24+
} from "https://deno.land/std@0.99.0/fs/mod.ts";
2525

2626
// configuration parsing (YAML)
2727
export {
2828
JSON_SCHEMA,
2929
parse as parseYaml,
30-
} from "https://deno.land/std@0.84.0/encoding/yaml.ts";
30+
} from "https://deno.land/std@0.99.0/encoding/yaml.ts";
3131

3232
// file watching and directory matching
3333
export {
@@ -36,10 +36,10 @@ export {
3636
globToRegExp,
3737
relative,
3838
resolve,
39-
} from "https://deno.land/std@0.85.0/path/mod.ts";
39+
} from "https://deno.land/std@0.99.0/path/mod.ts";
4040

4141
// event control
42-
export { deferred, delay } from "https://deno.land/std@0.85.0/async/mod.ts";
42+
export { deferred, delay } from "https://deno.land/std@0.99.0/async/mod.ts";
4343

4444
// permission management
45-
export { grant } from "https://deno.land/std@0.85.0/permissions/mod.ts";
45+
export { grant } from "https://deno.land/std@0.99.0/permissions/mod.ts";

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export async function writeConfigTemplate(template: Template): Promise<void> {
207207
logger.info(
208208
`\`${template.filename}\` created in current working directory`,
209209
);
210-
} catch (e) {
210+
} catch {
211211
logger.error(
212212
`\`${template.filename}\` cannot be saved in current working directory`,
213213
);

src/daemon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class Daemon implements AsyncIterable<DenonEvent> {
109109
s = await process.status();
110110
process.close();
111111
logger.debug(`got status of process with pid ${process.pid}`);
112-
} catch (error) {
112+
} catch {
113113
logger.debug(`error getting status of process with pid ${process.pid}`);
114114
}
115115
const p = this.#processes[pid];

0 commit comments

Comments
 (0)