-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependency update. Release 1.0.0-rc.10.
- Loading branch information
Showing
8 changed files
with
64 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,39 +13,39 @@ | |
* - Always use the same version of all imports from deno.land/std | ||
*/ | ||
// cli | ||
export { parse } from "https://deno.land/std@0.199.0/flags/mod.ts" | ||
export type { Args } from "https://deno.land/std@0.199.0/flags/mod.ts" | ||
export * as path from "https://deno.land/std@0.199.0/path/mod.ts" | ||
export * as uuid from "https://deno.land/std@0.199.0/uuid/mod.ts" | ||
export { parse } from "https://deno.land/std@0.203.0/flags/mod.ts" | ||
export type { Args } from "https://deno.land/std@0.203.0/flags/mod.ts" | ||
export * as path from "https://deno.land/std@0.203.0/path/mod.ts" | ||
export * as uuid from "https://deno.land/std@0.203.0/uuid/mod.ts" | ||
// logger | ||
export { stripColor } from "https://deno.land/std@0.199.0/fmt/colors.ts" | ||
export { stripColor } from "https://deno.land/std@0.203.0/fmt/colors.ts" | ||
// config | ||
export * as jsonc from "https://deno.land/std@0.199.0/jsonc/mod.ts" | ||
export * as jsonc from "https://deno.land/std@0.203.0/jsonc/mod.ts" | ||
// watcher | ||
export { deferred, delay } from "https://deno.land/std@0.199.0/async/mod.ts" | ||
export { globToRegExp, relative } from "https://deno.land/std@0.199.0/path/mod.ts" | ||
export { deferred, delay } from "https://deno.land/std@0.203.0/async/mod.ts" | ||
export { globToRegExp, relative } from "https://deno.land/std@0.203.0/path/mod.ts" | ||
// load balancer | ||
export { copy } from "https://deno.land/std@0.199.0/streams/mod.ts" | ||
export { copy } from "https://deno.land/std@0.203.0/streams/mod.ts" | ||
// core - process | ||
export { StringReader } from "https://deno.land/std@0.199.0/io/string_reader.ts" | ||
export { readLines } from "https://deno.land/std@0.199.0/io/mod.ts" | ||
export { StringReader } from "https://deno.land/std@0.203.0/io/string_reader.ts" | ||
export { readLines } from "https://deno.land/std@0.203.0/io/mod.ts" | ||
// service installer, release tool | ||
export { existsSync } from "https://deno.land/std@0.199.0/fs/mod.ts" | ||
export { existsSync } from "https://deno.land/std@0.203.0/fs/mod.ts" | ||
// ipc | ||
export { debounce } from "https://deno.land/std@0.199.0/async/mod.ts" | ||
export { basename, dirname, join, resolve } from "https://deno.land/std@0.199.0/path/mod.ts" | ||
export { debounce } from "https://deno.land/std@0.203.0/async/mod.ts" | ||
export { basename, dirname, join, resolve } from "https://deno.land/std@0.203.0/path/mod.ts" | ||
// upgrader | ||
export { gt, lt, parse as parseVersion } from "https://deno.land/std@0.199.0/semver/mod.ts" | ||
export type { SemVer } from "https://deno.land/std@0.199.0/semver/mod.ts" | ||
export { gt, lt, parse as parseVersion } from "https://deno.land/std@0.203.0/semver/mod.ts" | ||
export type { SemVer } from "https://deno.land/std@0.203.0/semver/mod.ts" | ||
|
||
/** | ||
* Third party dependencies | ||
* | ||
* - Prefer deno.land/x when available | ||
*/ | ||
export { Cron } from "https://deno.land/x/[email protected].1/dist/croner.js" | ||
export { z } from "https://deno.land/x/zod@v3.21.4/mod.ts" | ||
export { Cron } from "https://deno.land/x/[email protected].2/dist/croner.js" | ||
export { z } from "https://deno.land/x/zod@v3.22.2/mod.ts" | ||
export { installService, uninstallService } from "https://deno.land/x/[email protected]/mod.ts" | ||
export type { InstallServiceOptions, UninstallServiceOptions } from "https://deno.land/x/[email protected]/mod.ts" | ||
export { $ } from "https://deno.land/x/dax@0.34.0/mod.ts" | ||
export { CommandChild } from "https://deno.land/x/dax@0.34.0/src/command.ts" | ||
export { $ } from "https://deno.land/x/dax@0.35.0/mod.ts" | ||
export { CommandChild } from "https://deno.land/x/dax@0.35.0/src/command.ts" |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export { Application, Router } from "https://deno.land/x/[email protected].0/mod.ts" | ||
export { dirname, fromFileUrl } from "https://deno.land/std@0.199.0/path/mod.ts" | ||
export { Application, Router } from "https://deno.land/x/[email protected].1/mod.ts" | ||
export { dirname, fromFileUrl } from "https://deno.land/std@0.203.0/path/mod.ts" | ||
export { Bundlee } from "https://deno.land/x/[email protected]/mod.ts" |
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 +1,2 @@ | ||
export { assert, assertEquals, assertNotEquals, assertRejects, assertThrows } from "https://deno.land/std@0.199.0/assert/mod.ts" | ||
export { assertSpyCall, spy } from "https://deno.land/std@0.199.0/testing/mock.ts" | ||
export { assert, assertEquals, assertNotEquals, assertRejects, assertThrows } from "https://deno.land/std@0.203.0/assert/mod.ts" | ||
export { assertSpyCall, spy } from "https://deno.land/std@0.203.0/testing/mock.ts" |
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 |
---|---|---|
|
@@ -2,6 +2,20 @@ | |
"canary_url": "https://raw.githubusercontent.com/Hexagon/pup/main/pup.ts", | ||
"stable": [], | ||
"prerelease": [ | ||
{ | ||
"version": "1.0.0-rc.10", | ||
"url": "https://deno.land/x/[email protected]/pup.ts", | ||
"deno": null, | ||
"deno_unstable": "1.33.0", | ||
"default_permissions": [ | ||
"--allow-env", | ||
"--allow-read", | ||
"--allow-write", | ||
"--allow-sys=loadavg,systemMemoryInfo,osUptime,osRelease", | ||
"--allow-net", | ||
"--allow-run" | ||
] | ||
}, | ||
{ | ||
"version": "1.0.0-rc.9", | ||
"url": "https://deno.land/x/[email protected]/pup.ts", | ||
|