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

Commit 411ac72

Browse files
committed
chore: update std deps to 0.84
1 parent 82a089f commit 411ac72

File tree

2 files changed

+21
-22
lines changed

2 files changed

+21
-22
lines changed

compiler/mod.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
import { ensureDir } from "https://deno.land/[email protected]/fs/ensure_dir.ts";
2-
import { existsSync, path } from '../deps.ts';
3-
import { VERSION } from "../version.ts";
4-
import { checksum } from './wasm-checksum.js';
5-
import { default as init_wasm, transformSync } from './wasm-pack.js';
1+
import { ensureDir, existsSync, path } from '../deps.ts'
2+
import { VERSION } from '../version.ts'
3+
import { checksum } from './wasm-checksum.js'
4+
import { default as init_wasm, transformSync } from './wasm-pack.js'
65

76
type ImportMap = Record<string, ReadonlyArray<string>>
87

@@ -40,8 +39,7 @@ export interface TransformRet {
4039
* transpile code synchronously by swc.
4140
*
4241
* ```javascript
43-
* transpileSync(
44-
* `
42+
* transpileSync(`
4543
* export default App() {
4644
* return <h1>Hello World</h1>
4745
* }
@@ -59,7 +57,7 @@ export function transpileSync(code: string, opts?: TransformOptions): TransformR
5957
}
6058

6159
/**
62-
* load and initiate compiler wasm.
60+
* initiate the compiler wasm.
6361
*/
6462
export const initWasm = async (denoCacheDir: string) => {
6563
const cacheDir = path.join(denoCacheDir, `deps/https/deno.land/aleph@v${VERSION}`)

deps.ts

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
// deno.land/std
2-
export { Untar } from 'https://deno.land/std@0.83.0/archive/tar.ts'
3-
export * as bytes from 'https://deno.land/std@0.83.0/bytes/mod.ts'
4-
export * as base64 from 'https://deno.land/std@0.83.0/encoding/base64.ts'
5-
export * as colors from 'https://deno.land/std@0.83.0/fmt/colors.ts'
6-
export { ensureDir } from 'https://deno.land/std@0.83.0/fs/ensure_dir.ts'
7-
export { exists, existsSync } from 'https://deno.land/std@0.83.0/fs/exists.ts'
8-
export { walk } from 'https://deno.land/std@0.83.0/fs/walk.ts'
9-
export { Sha1 } from 'https://deno.land/std@0.83.0/hash/sha1.ts'
10-
export { Sha256 } from 'https://deno.land/std@0.83.0/hash/sha256.ts'
11-
export { listenAndServe, serve, ServerRequest } from 'https://deno.land/std@0.83.0/http/server.ts'
12-
export type { Response } from 'https://deno.land/std@0.83.0/http/server.ts'
13-
export * as bufio from 'https://deno.land/std@0.83.0/io/bufio.ts'
14-
export * as path from 'https://deno.land/std@0.83.0/path/mod.ts'
15-
export * as ws from 'https://deno.land/std@0.83.0/ws/mod.ts'
2+
export { Untar } from 'https://deno.land/std@0.84.0/archive/tar.ts'
3+
export * as bytes from 'https://deno.land/std@0.84.0/bytes/mod.ts'
4+
export * as base64 from 'https://deno.land/std@0.84.0/encoding/base64.ts'
5+
export * as colors from 'https://deno.land/std@0.84.0/fmt/colors.ts'
6+
export { ensureDir } from 'https://deno.land/std@0.84.0/fs/ensure_dir.ts'
7+
export { exists, existsSync } from 'https://deno.land/std@0.84.0/fs/exists.ts'
8+
export { walk } from 'https://deno.land/std@0.84.0/fs/walk.ts'
9+
export { Sha1 } from 'https://deno.land/std@0.84.0/hash/sha1.ts'
10+
export { Sha256 } from 'https://deno.land/std@0.84.0/hash/sha256.ts'
11+
export { listenAndServe, serve, ServerRequest } from 'https://deno.land/std@0.84.0/http/server.ts'
12+
export type { Response } from 'https://deno.land/std@0.84.0/http/server.ts'
13+
export * as bufio from 'https://deno.land/std@0.84.0/io/bufio.ts'
14+
export * as path from 'https://deno.land/std@0.84.0/path/mod.ts'
15+
export * as ws from 'https://deno.land/std@0.84.0/ws/mod.ts'
1616
// deno.land/x
1717
export * as brotli from 'https://deno.land/x/[email protected]/mod.ts'
1818
export { gzipDecode, gzipEncode } from 'https://deno.land/x/[email protected]/mod.ts'
@@ -26,3 +26,4 @@ export type { ECMA } from 'https://esm.sh/[email protected]'
2626
export { safeLoadFront } from 'https://esm.sh/[email protected]'
2727
// verdor/
2828
export { default as less } from './vendor/less/less.js'
29+

0 commit comments

Comments
 (0)