Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit e670171

Browse files
committed
chore: update std modules to 0.90
1 parent 7e8156a commit e670171

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

deps.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
// std
2-
export { Untar } from 'https://deno.land/std@0.89.0/archive/tar.ts'
3-
export * as base64 from 'https://deno.land/std@0.89.0/encoding/base64.ts'
4-
export * as flags from 'https://deno.land/std@0.89.0/flags/mod.ts'
5-
export * as colors from 'https://deno.land/std@0.89.0/fmt/colors.ts'
6-
export { ensureDir } from 'https://deno.land/std@0.89.0/fs/ensure_dir.ts'
7-
export { walk } from 'https://deno.land/std@0.89.0/fs/walk.ts'
8-
export { createHash } from 'https://deno.land/std@0.89.0/hash/mod.ts'
9-
export { serve, serveTLS } from 'https://deno.land/std@0.89.0/http/server.ts'
10-
export type { BufReader, BufWriter } from 'https://deno.land/std@0.89.0/io/bufio.ts'
11-
export { MultipartReader } from 'https://deno.land/std@0.89.0/mime/multipart.ts'
12-
export type { MultipartFormData } from 'https://deno.land/std@0.89.0/mime/multipart.ts'
13-
export * as path from 'https://deno.land/std@0.89.0/path/mod.ts'
14-
export * as ws from 'https://deno.land/std@0.89.0/ws/mod.ts'
2+
export { Untar } from 'https://deno.land/std@0.90.0/archive/tar.ts'
3+
export * as base64 from 'https://deno.land/std@0.90.0/encoding/base64.ts'
4+
export * as flags from 'https://deno.land/std@0.90.0/flags/mod.ts'
5+
export * as colors from 'https://deno.land/std@0.90.0/fmt/colors.ts'
6+
export { ensureDir } from 'https://deno.land/std@0.90.0/fs/ensure_dir.ts'
7+
export { walk } from 'https://deno.land/std@0.90.0/fs/walk.ts'
8+
export { createHash } from 'https://deno.land/std@0.90.0/hash/mod.ts'
9+
export { serve, serveTLS } from 'https://deno.land/std@0.90.0/http/server.ts'
10+
export type { BufReader, BufWriter } from 'https://deno.land/std@0.90.0/io/bufio.ts'
11+
export { MultipartReader } from 'https://deno.land/std@0.90.0/mime/multipart.ts'
12+
export type { MultipartFormData } from 'https://deno.land/std@0.90.0/mime/multipart.ts'
13+
export * as path from 'https://deno.land/std@0.90.0/path/mod.ts'
14+
export * as ws from 'https://deno.land/std@0.90.0/ws/mod.ts'
1515
// deno.land/x
1616
export * as brotli from 'https://deno.land/x/[email protected]/mod.ts'
1717
export { gzipDecode, gzipEncode } from 'https://deno.land/x/[email protected]/mod.ts'

framework/core/routing_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from 'https://deno.land/std@0.88.0/testing/asserts.ts'
1+
import { assertEquals } from 'https://deno.land/std@0.90.0/testing/asserts.ts'
22
import { Routing } from './routing.ts'
33

44
Deno.test(`routing`, () => {

plugins/css_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from 'https://deno.land/std@0.88.0/testing/asserts.ts'
1+
import { assertEquals } from 'https://deno.land/std@0.90.0/testing/asserts.ts'
22
import cssLoader from './css.ts'
33

44
Deno.test('css loader', async () => {

plugins/sass_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from 'https://deno.land/std@0.88.0/testing/asserts.ts'
1+
import { assertEquals } from 'https://deno.land/std@0.90.0/testing/asserts.ts'
22
import sassLoader from './sass.ts'
33

44
Deno.test('scss loader', async () => {

plugins/wasm_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from 'https://deno.land/std@0.88.0/testing/asserts.ts'
1+
import { assertEquals } from 'https://deno.land/std@0.90.0/testing/asserts.ts'
22
import wasmLoader from './wasm.ts'
33

44
Deno.test('wasm loader', async () => {

server/helper_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from 'https://deno.land/std@0.88.0/testing/asserts.ts'
1+
import { assertEquals } from 'https://deno.land/std@0.90.0/testing/asserts.ts'
22
import { toLocalUrl } from './helper.ts'
33

44
Deno.test(`server/helper`, async () => {

0 commit comments

Comments
 (0)