-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from lambdalisue/up
🆙 Upgrade dependencies and supported Deno version
- Loading branch information
Showing
6 changed files
with
49 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,19 @@ help: | |
perl -pe 's/(.*):.*##\s*/sprintf("%-20s",$$1)/eg;' | ||
|
||
fmt: FORCE ## Format code | ||
@deno fmt --ignore=.deno | ||
@deno fmt | ||
|
||
fmt-check: FORCE ## Format check | ||
@deno fmt --check --ignore=.deno | ||
@deno fmt --check | ||
|
||
lint: FORCE ## Lint code | ||
@deno lint --ignore=.deno | ||
@deno lint | ||
|
||
type-check: FORCE ## Type check | ||
@deno test --unstable --no-run ${TARGETS} | ||
@deno test --no-run ${TARGETS} | ||
|
||
test: FORCE ## Test | ||
@deno test --unstable -A --no-check --jobs | ||
@deno test -A --no-check | ||
|
||
deps: FORCE ## Update dependencies | ||
@deno run -A https://deno.land/x/[email protected]/main.ts ${TARGETS} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts"; | ||
import { assertEquals } from "https://deno.land/std@0.164.0/testing/asserts.ts"; | ||
import { unreachable } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { unnullish } from "./unnullish.ts"; | ||
|
||
|