-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use libpkgx 0.17; Fixes unicode.org conflicts (#950)
- Loading branch information
Showing
4 changed files
with
14 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,11 +21,7 @@ | |
"typecheck": "deno check --unstable ./entrypoint.ts", | ||
"compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable --output $INIT_CWD/pkgx ./entrypoint.ts" | ||
}, | ||
"pkgx": { | ||
"dependencies": { | ||
"deno.land": "^1.33.3" | ||
} | ||
}, | ||
"pkgx": "deno~1.39", | ||
"lint": { | ||
"exclude": ["src/**/*.test.ts"] | ||
}, | ||
|
@@ -34,10 +30,10 @@ | |
}, | ||
"imports": { | ||
"is-what": "https://deno.land/x/[email protected]/src/index.ts", | ||
"pkgx": "https://deno.land/x/libpkgx@v0.16.0/mod.ts", | ||
"pkgx/": "https://deno.land/x/libpkgx@v0.16.0/src/", | ||
"pkgx": "https://deno.land/x/libpkgx@v0.17.0/mod.ts", | ||
"pkgx/": "https://deno.land/x/libpkgx@v0.17.0/src/", | ||
"outdent": "https://deno.land/x/[email protected]/mod.ts", | ||
"cliffy/": "https://deno.land/x/[email protected]/", | ||
"deno/": "https://deno.land/std@0.204.0/" // cliffy is on 196, try to consolidate to their choice | ||
"deno/": "https://deno.land/std@0.196.0/" // cliffy is on 196 so we standardized on it | ||
} | ||
} |
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 { stripAnsiCode } from "deno/fmt/colors.ts" | ||
import { stripAnsiCode } from "https://deno.land/[email protected]/fmt/colors.ts" | ||
import { ansi } from "cliffy/ansi/ansi.ts" | ||
import { dim } from "./color.ts" | ||
|
||
|