-
-
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.
- Loading branch information
Showing
15 changed files
with
115 additions
and
84 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 |
---|---|---|
|
@@ -13,39 +13,37 @@ | |
* - Always use the same version of all imports from deno.land/std | ||
*/ | ||
// cli | ||
export { parse } from "https://deno.land/std@0.207.0/flags/mod.ts" | ||
export type { Args } from "https://deno.land/std@0.207.0/flags/mod.ts" | ||
export * as path from "https://deno.land/std@0.207.0/path/mod.ts" | ||
export * as uuid from "https://deno.land/std@0.207.0/uuid/mod.ts" | ||
export { parse } from "https://deno.land/std@0.221.0/flags/mod.ts" | ||
export type { Args } from "https://deno.land/std@0.221.0/flags/mod.ts" | ||
export * as path from "https://deno.land/std@0.221.0/path/mod.ts" | ||
export * as uuid from "https://deno.land/std@0.221.0/uuid/mod.ts" | ||
// logger | ||
export { stripColor } from "https://deno.land/std@0.207.0/fmt/colors.ts" | ||
export { stripColor } from "https://deno.land/std@0.221.0/fmt/colors.ts" | ||
// config | ||
export * as jsonc from "https://deno.land/std@0.207.0/jsonc/mod.ts" | ||
export * as jsonc from "https://deno.land/std@0.221.0/jsonc/mod.ts" | ||
// watcher | ||
export { deferred, delay } from "https://deno.land/[email protected]/async/mod.ts" | ||
export { globToRegExp, relative } from "https://deno.land/[email protected]/path/mod.ts" | ||
// load balancer | ||
export { copy } from "https://deno.land/[email protected]/streams/mod.ts" | ||
export { delay } from "https://deno.land/[email protected]/async/mod.ts" | ||
export { globToRegExp, relative } from "https://deno.land/[email protected]/path/mod.ts" | ||
// core - process | ||
export { StringReader } from "https://deno.land/std@0.207.0/io/string_reader.ts" | ||
export { readLines } from "https://deno.land/std@0.207.0/io/mod.ts" | ||
export { StringReader } from "https://deno.land/std@0.221.0/io/string_reader.ts" | ||
export { readLines } from "https://deno.land/std@0.221.0/io/mod.ts" | ||
// service installer, release tool | ||
export { existsSync } from "https://deno.land/std@0.207.0/fs/mod.ts" | ||
export { existsSync } from "https://deno.land/std@0.221.0/fs/mod.ts" | ||
// ipc | ||
export { debounce } from "https://deno.land/std@0.207.0/async/mod.ts" | ||
export { basename, dirname, join, resolve } from "https://deno.land/std@0.207.0/path/mod.ts" | ||
export { debounce } from "https://deno.land/std@0.221.0/async/mod.ts" | ||
export { basename, dirname, join, resolve } from "https://deno.land/std@0.221.0/path/mod.ts" | ||
// upgrader | ||
export { gt, lt, parse as parseVersion } from "https://deno.land/std@0.207.0/semver/mod.ts" | ||
export type { SemVer } from "https://deno.land/std@0.207.0/semver/mod.ts" | ||
export { greaterThan, lessThan, parse as parseVersion } from "https://deno.land/std@0.221.0/semver/mod.ts" | ||
export type { SemVer } from "https://deno.land/std@0.221.0/semver/mod.ts" | ||
|
||
/** | ||
* Third party dependencies | ||
* | ||
* - Prefer deno.land/x when available | ||
*/ | ||
export { Cron } from "https://deno.land/x/croner@7.0.5/dist/croner.js" | ||
export { Cron } from "https://deno.land/x/croner@8.0.1/dist/croner.js" | ||
export { z } from "https://deno.land/x/[email protected]/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.35.0/mod.ts" | ||
export { CommandChild } from "https://deno.land/x/dax@0.35.0/src/command.ts" | ||
export { $ } from "https://deno.land/x/dax@0.39.2/mod.ts" | ||
export { CommandChild } from "https://deno.land/x/dax@0.39.2/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 |
---|---|---|
|
@@ -14,8 +14,8 @@ If you have experience with software packaging, your contribution can greatly en | |
|
||
- Pup can be compiled into an executable prior to packaging using `deno compile`. The procedure is described at | ||
[https://deno.com/[email protected]/tools/compiler](https://deno.com/[email protected]/tools/compiler). The command should be similar to | ||
`deno compile --allow-all --reload --unstable --output pup pup.ts --external-installer`. The `--unstable` flag should be included if the version you are packaging (mostly pre-releases) requires | ||
unstable features according to `versions.json`. | ||
`deno compile --allow-all --reload --unstable-kv --output pup pup.ts --external-installer`. The `--unstable-kv` flag should be included if the version you are packaging (mostly pre-releases) | ||
requires unstable features according to `versions.json`. | ||
|
||
- The `--external-installer` argument to the Pup script disables the built-in installer, hiding `setup` and `upgrade` options from `--help`. | ||
|
||
|
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
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/oak@v12.6.1/mod.ts" | ||
export { dirname, fromFileUrl } from "https://deno.land/std@0.207.0/path/mod.ts" | ||
export { Application, Router } from "https://deno.land/x/oak@14.2.0/mod.ts" | ||
export { dirname, fromFileUrl } from "https://deno.land/std@0.221.0/path/mod.ts" | ||
export { Bundlee } from "https://deno.land/x/[email protected]/mod.ts" |
Oops, something went wrong.