Skip to content

Commit 489e313

Browse files
authored
feat: update deno/std to 0.112.0 (#61)
1 parent e11caee commit 489e313

33 files changed

+65
-135
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: browser-actions/setup-firefox@latest
2424
with:
2525
firefox-version: ${{ matrix.firefox }}
26-
- run: npm install
26+
- run: npm ci
2727
- run: npm run build
2828
- run: npm run test:browser
2929
env:
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set Chrome Path
5252
run: $env:CI_BROWSER=$(where chrome)
5353
- run: echo $env:CI_BROWSER
54-
- run: npm install
54+
- run: npm ci
5555
- run: npm run build
5656
- run: npm run test:browser
5757
env:

nodelibs/deno/_stream_duplex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import Duplex from 'https://deno.land/std@0.106.0/node/_stream/duplex.ts';
1+
import Duplex from 'https://deno.land/std@0.112.0/node/_stream/duplex.ts';
22
export default Duplex;
33
export const from = Duplex.from;

nodelibs/deno/_stream_passthrough.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from 'https://deno.land/std@0.106.0/node/_stream/passthrough.ts';
1+
export { default } from 'https://deno.land/std@0.112.0/node/_stream/passthrough.ts';

nodelibs/deno/_stream_readable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Readable from 'https://deno.land/std@0.106.0/node/_stream/readable.ts';
1+
import Readable from 'https://deno.land/std@0.112.0/node/_stream/readable.ts';
22
export default Readable;
33
export const from = Readable.from;
44
export const ReadableState = Readable.ReadableState;

nodelibs/deno/_stream_transform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from 'https://deno.land/std@0.106.0/node/_stream/passthrough.ts';
1+
export { default } from 'https://deno.land/std@0.112.0/node/_stream/passthrough.ts';

nodelibs/deno/_stream_writable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import Writable from 'https://deno.land/std@0.106.0/node/_stream/readable.ts';
1+
import Writable from 'https://deno.land/std@0.112.0/node/_stream/readable.ts';
22
export default Writable;
33
export const WritableState = Writable.WritableState;

nodelibs/deno/assert.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from 'https://deno.land/std@0.106.0/node/assert.ts';
2-
export { default } from 'https://deno.land/std@0.106.0/node/assert.ts';
1+
export * from 'https://deno.land/std@0.112.0/node/assert.ts';
2+
export { default } from 'https://deno.land/std@0.112.0/node/assert.ts';

nodelibs/deno/buffer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export * from 'https://deno.land/std@0.106.0/node/buffer.ts';
2-
import { default as buffer } from 'https://deno.land/std@0.106.0/node/buffer.ts';
1+
export * from 'https://deno.land/std@0.112.0/node/buffer.ts';
2+
import { default as buffer } from 'https://deno.land/std@0.112.0/node/buffer.ts';
33
export const kMaxLength = 4294967296;
44
buffer.kMaxLength = kMaxLength;
55
export default buffer;

nodelibs/deno/child_process.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from 'https://deno.land/std@0.106.0/node/child_process.ts';
2-
export { default } from 'https://deno.land/std@0.106.0/node/child_process.ts';
1+
export * from 'https://deno.land/std@0.112.0/node/child_process.ts';
2+
export { default } from 'https://deno.land/std@0.112.0/node/child_process.ts';

nodelibs/deno/console.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from 'https://deno.land/std@0.106.0/node/console.ts';
2-
export { default } from 'https://deno.land/std@0.106.0/node/console.ts';
1+
export * from 'https://deno.land/std@0.112.0/node/console.ts';
2+
export { default } from 'https://deno.land/std@0.112.0/node/console.ts';

0 commit comments

Comments
 (0)