Skip to content

Commit

Permalink
chore: bump deps, refactor deprecated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Nov 28, 2024
1 parent 9e05ea6 commit 527ea59
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 58 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"type": "deno check **/*.ts",
"check": "deno task format:fail && deno task lint:fail && deno task type && deno task test",
"release": "deno run -A ./scripts/release.ts",
"update": "deno run -A ./scripts/update.ts"
"update": "deno run -A ./scripts/update.ts -x chokidar && deno task check"
},
"fmt": {
"lineWidth": 120,
Expand Down
88 changes: 45 additions & 43 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { abortable, deadline, debounce, delay, retry } from 'jsr:@std/async@^1.0.8'
export { walk } from 'jsr:@std/fs@^1.0.5'
export { serveDir, type ServeDirOptions, STATUS_CODE, STATUS_TEXT, type StatusCode } from 'jsr:@std/http@^1.0.9'
export { abortable, deadline, debounce, delay, retry } from 'jsr:@std/async@^1.0.9'
export { walk } from 'jsr:@std/fs@^1.0.6'
export { serveDir, type ServeDirOptions, STATUS_CODE, STATUS_TEXT, type StatusCode } from 'jsr:@std/http@^1.0.11'
export { joinGlobs, toFileUrl } from 'jsr:@std/path@^1.0.8'
export { normalize as posixNormalize } from 'jsr:@std/path@^1.0.8/posix/normalize'
export { escape } from 'jsr:@std/regexp@^1.0.0'
Expand Down
14 changes: 7 additions & 7 deletions dev_deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { $ as _$, type $Type } from 'jsr:@david/dax@^0.42.0'

export { parseFromJson } from 'https://deno.land/x/import_map@v0.20.1/mod.ts'
export { parseFromJson } from 'https://deno.land/x/import_map@v0.21.0/mod.ts'
export {
Confirm,
type ConfirmOptions,
Expand All @@ -10,14 +10,14 @@ export {
type SelectOptions,
} from 'jsr:@cliffy/prompt@^1.0.0-rc.7'
export { as, ensure, is } from 'jsr:@core/unknownutil@^4.3.0'
export { createGraph, load as loadGraph } from 'jsr:@deno/graph@^0.84.1'
export type { DependencyJson, ResolvedDependency } from 'jsr:@deno/graph@^0.84.1/types'
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.7'
export { parseArgs } from 'jsr:@std/cli@^1.0.6'
export { Spinner } from 'jsr:@std/cli@^1.0.6/unstable-spinner'
export { createGraph, load as loadGraph } from 'jsr:@deno/graph@^0.86.3'
export type { DependencyJson, ResolvedDependency } from 'jsr:@deno/graph@^0.86.3/types'
export { assertEquals, assertExists } from 'jsr:@std/assert@^1.0.8'
export { parseArgs } from 'jsr:@std/cli@^1.0.7'
export { Spinner } from 'jsr:@std/cli@^1.0.7/unstable-spinner'
export { filterEntries } from 'jsr:@std/collections@^1.0.9'
export { bold, cyan, dim, green, magenta } from 'jsr:@std/fmt@^1.0.3/colors'
export { expandGlob } from 'jsr:@std/fs@^1.0.5'
export { expandGlob } from 'jsr:@std/fs@^1.0.6'
export { getAvailablePort } from 'jsr:@std/net@^1.0.4/get-available-port'
export { dirname, fromFileUrl, relative, resolve, toFileUrl } from 'jsr:@std/path@^1.0.8'
export { escape } from 'jsr:@std/regexp@^1.0.0'
Expand Down
9 changes: 5 additions & 4 deletions src/sentry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ import {
captureException,
continueTrace,
defineIntegration,
getSanitizedUrlString,
parseUrl,
requestDataIntegration,
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
setHttpStatus,
startSpan,
withIsolationScope,
} from 'https://esm.sh/@sentry/core@^8.37.1'
import * as Sentry from 'https://esm.sh/@sentry/deno@^8.37.1'
import type { Client, IntegrationFn, SpanAttributes } from 'https://esm.sh/@sentry/types@^8.37.1'
import { getSanitizedUrlString, parseUrl } from 'https://esm.sh/@sentry/utils@^8.37.1'
} from 'https://esm.sh/@sentry/core@^8.41.0'
import * as Sentry from 'https://esm.sh/@sentry/deno@^8.41.0'
import type { Client, IntegrationFn, SpanAttributes } from 'https://esm.sh/@sentry/types@^8.41.0'

type RawHandler = (request: Request, info: Deno.ServeHandlerInfo) => Response | Promise<Response>

Expand Down

0 comments on commit 527ea59

Please sign in to comment.