-
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.
chore: update script now supports bumping deps in files
- Loading branch information
Showing
5 changed files
with
441 additions
and
133 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,8 +1,8 @@ | ||
export { abortable, deadline, debounce, delay, retry } from 'jsr:@std/async@^1.0.0-rc.4' | ||
export { walk } from 'jsr:@std/fs@^1.0.0-rc.5' | ||
export { serveDir, type ServeDirOptions, STATUS_CODE, STATUS_TEXT, type StatusCode } from 'jsr:@std/http@^1.0.0-rc.4' | ||
export { joinGlobs, toFileUrl } from 'jsr:@std/path@^1.0.0-rc.4' | ||
export { joinGlobs, toFileUrl } from 'jsr:@std/path@^1.0.0' | ||
export { normalize as posixNormalize } from 'jsr:@std/path@^1.0.0/posix/normalize' | ||
export { escape } from 'jsr:@std/regexp@^1.0.0-rc.1' | ||
export { escape } from 'jsr:@std/regexp@^1.0.0' | ||
export { watch } from 'npm:chokidar@^3.6.0' | ||
export type { ZodType } from 'npm:zod@^3.23.8' |
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,6 @@ | ||
import { $ as _$ } from 'jsr:@david/dax@^0.41.0' | ||
|
||
export { parseFromJson } from 'https://deno.land/x/[email protected]/mod.ts' | ||
export { | ||
Confirm, | ||
type ConfirmOptions, | ||
|
@@ -6,13 +9,22 @@ export { | |
Select, | ||
type SelectOptions, | ||
} from 'jsr:@cliffy/prompt@^1.0.0-rc.5' | ||
export { $ } from 'jsr:@david/dax@^0.41.0' | ||
export { parse as parseDependency, resolveLatestVersion, stringify } from 'jsr:@molt/core@^0.18.5' | ||
export { assertEquals } from 'jsr:@std/assert@^1.0.0' | ||
export { ensure, is } from 'jsr:@core/unknownutil@^3.18.1' | ||
export { createGraph, load as loadGraph } from 'jsr:@deno/graph@^0.80.1' | ||
export type { DependencyJson, ResolvedDependency } from 'jsr:@deno/graph@^0.80.1/types' | ||
export { Mutex } from 'jsr:@lambdalisue/async@^2.1.1' | ||
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.0' | ||
export { parseArgs, Spinner } from 'jsr:@std/cli@^1.0.0-rc.5' | ||
export { filterEntries } from 'jsr:@std/collections@^1.0.4' | ||
export { bold, cyan, dim, green, magenta } from 'jsr:@std/fmt@^1.0.0-rc.1/colors' | ||
export { expandGlob } from 'jsr:@std/fs@^1.0.0-rc.5' | ||
export { getAvailablePort } from 'jsr:@std/net@^1.0.0-rc.1/get-available-port' | ||
export { dirname, relative } from 'jsr:@std/path@^1.0.0' | ||
export { dirname, fromFileUrl, relative, resolve, toFileUrl } from 'jsr:@std/path@^1.0.0' | ||
export { escape } from 'jsr:@std/regexp@^1.0.0' | ||
export { canParse, format, increment, parse as parseSemVer, type ReleaseType } from 'jsr:@std/semver@^1.0.0-rc.2' | ||
export * as SemVer from 'jsr:@std/semver@^1.0.0-rc.2' | ||
|
||
export const $ = new Proxy(_$, { | ||
apply(target, _, args: Parameters<typeof _$.raw>) { | ||
return target.raw(...args).quiet() | ||
}, | ||
}) |
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
Oops, something went wrong.