Skip to content

Commit 270ee0c

Browse files
committed
revert JSR support
1 parent 1f4cffa commit 270ee0c

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Slack API Client for Deno Run on Slack projects
66

77
```ts
8-
import { SlackAPI } from "jsr:@slack/api";
8+
import { SlackAPI } from "https://deno.land/x/deno_slack_api@2.9.3/mod.ts";
99

1010
const client = SlackAPI(token);
1111

deno.jsonc

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,18 @@
4646
"./types": "./src/types.ts"
4747
},
4848
"imports": {
49-
"@deno/dnt": "jsr:@deno/dnt@^0.41",
50-
"@std/assert": "jsr:@std/assert@^1",
51-
"@std/cli": "jsr:@std/cli@^1",
52-
"@std/fs": "jsr:@std/fs@^1",
53-
"@std/http": "jsr:@std/http@^0.206.0",
54-
"@std/path": "jsr:@std/path@^1.0.9",
55-
"@std/testing": "jsr:@std/testing@^1",
56-
"@std/text": "jsr:@std/text@^1"
49+
"@deno/dnt": "https://deno.land/x/dnt@0.41.0/mod.ts",
50+
"@std/assert": "https://deno.land/std@0.220.0/assert/mod.ts",
51+
"@std/cli/parse-args": "https://deno.land/std@0.220.0/cli/parse_args.ts",
52+
"@std/cli": "https://deno.land/std@0.220.0/cli/mod.ts",
53+
"@std/fs": "https://deno.land/std@0.220.0/fs/mod.ts",
54+
"@std/http/http-errors": "https://deno.land/std@0.182.0/http/http_errors.ts",
55+
"@std/http": "https://deno.land/std@0.220.0/http/mod.ts",
56+
"@std/path": "https://deno.land/std@0.220.0/path/mod.ts",
57+
"@std/testing/bdd": "https://deno.land/std@0.220.0/testing/bdd.ts",
58+
"@std/testing/mock": "https://deno.land/std@0.220.0/testing/mock.ts",
59+
"@std/testing": "https://deno.land/std@0.220.0/testing/mod.ts",
60+
"@std/text/to-pascal-case": "https://deno.land/std@0.220.0/text/case.ts",
61+
"@std/text": "https://deno.land/std@0.220.0/text/mod.ts"
5762
}
5863
}

docs/client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To instantiate the Slack API Client, use the top level `SlackAPI` export.
1111
default this is set to `"https://slack.com/api/"`
1212

1313
```ts
14-
import { SlackAPI } from "jsr:@slack/api";
14+
import { SlackAPI } from "https://deno.land/x/deno_slack_api@2.9.3/mod.ts";
1515

1616
// create a client with defaults
1717
const client = SlackAPI(token);

src/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

src/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { pascalCase } from "jsr:@wok/case@1.0.1";
1+
export { pascalCase } from "https://deno.land/x/case@v2.1.0/mod.ts";

0 commit comments

Comments
 (0)