Skip to content

Commit

Permalink
chore: update dependencies (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamBergamin authored Dec 10, 2024
1 parent db68738 commit ccf6fc7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
10 changes: 2 additions & 8 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"fmt": {
"files": {
"include": [
"src",
"README.md",
"scripts",
".github",
"deno.jsonc"
]
"include": ["src", "README.md", "scripts", ".github", "deno.jsonc"]
},
"options": {
"semiColons": true,
Expand All @@ -32,7 +26,7 @@
},
"tasks": {
"test": "deno fmt --check && deno lint && deno test --allow-read",
"coverage": "deno test --allow-read --coverage=.coverage && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage && deno run --allow-read https://deno.land/x/code_coverage@0.2.1/cli.ts"
"coverage": "deno test --allow-read --coverage=.coverage && deno coverage --exclude=fixtures --exclude=test --lcov --output=lcov.info .coverage && deno run --allow-read https://deno.land/x/code_coverage@0.3.2/cli.ts"
},
"lock": false
}
10 changes: 5 additions & 5 deletions scripts/src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { isCustomType } from "https://deno.land/x/deno_slack_sdk@2.1.4/types/mod.ts";
export type { ICustomType } from "https://deno.land/x/deno_slack_sdk@2.1.4/types/types.ts";
export { pascalCase } from "https://deno.land/x/case@v2.1.0/mod.ts";
export { parse } from "https://deno.land/std@0.185.0/flags/mod.ts";
export { SlackAPI } from "https://deno.land/x/deno_slack_api@2.1.1/mod.ts";
export { isCustomType } from "https://deno.land/x/deno_slack_sdk@2.15.0/types/mod.ts";
export type { ICustomType } from "https://deno.land/x/deno_slack_sdk@2.15.0/types/types.ts";
export { pascalCase } from "https://deno.land/x/case@2.2.0/mod.ts";
export { parse } from "https://deno.land/std@0.224.0/flags/mod.ts";
export { SlackAPI } from "https://deno.land/x/deno_slack_api@2.8.0/mod.ts";
2 changes: 1 addition & 1 deletion scripts/src/dev_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export {
assertFalse,
assertIsError,
assertStringIncludes,
} from "https://deno.land/std@0.152.0/testing/asserts.ts";
} from "https://deno.land/std@0.224.0/assert/mod.ts";
export { assert } from "https://deno.land/x/[email protected]/mod.ts";
export type {
IsExact,
Expand Down
4 changes: 2 additions & 2 deletions src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { DefineConnector } from "https://deno.land/x/deno_slack_sdk@2.1.4/functions/definitions/mod.ts";
export { Schema } from "https://deno.land/x/deno_slack_sdk@2.1.4/mod.ts";
export { DefineConnector } from "https://deno.land/x/deno_slack_sdk@2.15.0/functions/definitions/mod.ts";
export { Schema } from "https://deno.land/x/deno_slack_sdk@2.15.0/mod.ts";
4 changes: 2 additions & 2 deletions src/dev_deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export {
assertEquals,
assertExists,
} from "https://deno.land/std@0.152.0/testing/asserts.ts";
export { DefineWorkflow } from "https://deno.land/x/deno_slack_sdk@2.1.4/mod.ts";
} from "https://deno.land/std@0.224.0/assert/mod.ts";
export { DefineWorkflow } from "https://deno.land/x/deno_slack_sdk@2.15.0/mod.ts";

0 comments on commit ccf6fc7

Please sign in to comment.