Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: "1.34.3"
deno-version: "1.36.1"
- name: Check fmt
run: deno fmt --check
- name: Run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/udd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
with:
deno-version: "1.34.3"
deno-version: "1.36.1"
- name: Update dependencies
run: >
deno run --allow-net --allow-read --allow-write=deps/
Expand Down
2 changes: 1 addition & 1 deletion deps/scrapbox-rest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ export type {
SessionError,
Snapshot,
TweetInfo,
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/rest.ts";
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/rest.ts";
4 changes: 2 additions & 2 deletions deps/scrapbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ export type {
BaseLine,
Line,
Scrapbox,
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/userscript.ts";
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/userscript.ts";
export type {
BaseStore,
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.4.2/baseStore.ts";
} from "https://raw.githubusercontent.com/scrapbox-jp/types/0.5.0/baseStore.ts";
export * from "https://esm.sh/@progfay/scrapbox-parser@8.1.0";
4 changes: 2 additions & 2 deletions deps/testing.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "https://deno.land/std@0.196.0/testing/asserts.ts";
export * from "https://deno.land/std@0.196.0/testing/snapshot.ts";
export * from "https://deno.land/std@0.198.0/testing/asserts.ts";
export * from "https://deno.land/std@0.198.0/testing/snapshot.ts";
4 changes: 2 additions & 2 deletions rest/__snapshots__/getCodeBlocks.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ snapshot[`getCodeBlocks() 1`] = `
{
created: 1672982822,
id: "63b7b1261280f00000c9bc2d",
text: " - インデント\\r",
text: " - インデント",
updated: 1672982822,
userId: "5ef2bdebb60650001e1280f0",
},
Expand Down Expand Up @@ -233,7 +233,7 @@ snapshot[`getCodeBlocks() > filename filter 1`] = `
{
created: 1672982822,
id: "63b7b1261280f00000c9bc2d",
text: " - インデント\\r",
text: " - インデント",
updated: 1672982822,
userId: "5ef2bdebb60650001e1280f0",
},
Expand Down
2 changes: 1 addition & 1 deletion rest/getCodeBlocks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const sample: Line[] = [
},
{
"id": "63b7b1261280f00000c9bc2d",
"text": " - インデント\r",
"text": " - インデント",
"userId": "5ef2bdebb60650001e1280f0",
"created": 1672982822,
"updated": 1672982822,
Expand Down