Skip to content

Commit 9514654

Browse files
authored
Merge pull request #135 from takker99/update-deno-dependencies
⬆️ Upgrade dependencies and fix a snapshot result
2 parents 64f9b57 + 6f570e8 commit 9514654

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: denoland/setup-deno@v1
1111
with:
12-
deno-version: "1.34.3"
12+
deno-version: "1.36.1"
1313
- name: Check fmt
1414
run: deno fmt --check
1515
- name: Run lint

.github/workflows/udd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: denoland/setup-deno@v1
1414
with:
15-
deno-version: "1.34.3"
15+
deno-version: "1.36.1"
1616
- name: Update dependencies
1717
run: >
1818
deno run --allow-net --allow-read --allow-write=deps/

deps/scrapbox-rest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ export type {
2525
SessionError,
2626
Snapshot,
2727
TweetInfo,
28-
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/rest.ts";
28+
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/rest.ts";

deps/scrapbox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ export type {
22
BaseLine,
33
Line,
44
Scrapbox,
5-
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/userscript.ts";
5+
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/userscript.ts";
66
export type {
77
BaseStore,
8-
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/baseStore.ts";
8+
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/baseStore.ts";
99
export * from "https://esm.sh/@progfay/scrapbox-parser@8.1.0";

deps/testing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from "https://deno.land/std@0.196.0/testing/asserts.ts";
2-
export * from "https://deno.land/std@0.196.0/testing/snapshot.ts";
1+
export * from "https://deno.land/std@0.198.0/testing/asserts.ts";
2+
export * from "https://deno.land/std@0.198.0/testing/snapshot.ts";

rest/__snapshots__/getCodeBlocks.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ snapshot[`getCodeBlocks() 1`] = `
6969
{
7070
created: 1672982822,
7171
id: "63b7b1261280f00000c9bc2d",
72-
text: " - インデント\\r",
72+
text: " - インデント",
7373
updated: 1672982822,
7474
userId: "5ef2bdebb60650001e1280f0",
7575
},
@@ -233,7 +233,7 @@ snapshot[`getCodeBlocks() > filename filter 1`] = `
233233
{
234234
created: 1672982822,
235235
id: "63b7b1261280f00000c9bc2d",
236-
text: " - インデント\\r",
236+
text: " - インデント",
237237
updated: 1672982822,
238238
userId: "5ef2bdebb60650001e1280f0",
239239
},

rest/getCodeBlocks.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const sample: Line[] = [
9494
},
9595
{
9696
"id": "63b7b1261280f00000c9bc2d",
97-
"text": " - インデント\r",
97+
"text": " - インデント",
9898
"userId": "5ef2bdebb60650001e1280f0",
9999
"created": 1672982822,
100100
"updated": 1672982822,

0 commit comments

Comments
 (0)