Skip to content

Commit

Permalink
Bump deno (#54)
Browse files Browse the repository at this point in the history
* upgrade deno to canary with class display fix

* update and pin dependencies in deno cache
  • Loading branch information
rgbkrk committed Oct 4, 2023
1 parent 76c4c33 commit 3054b19
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion deno/base/1.37/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN curl -fsSL https://deno.land/x/install/install.sh | sh
ENV PATH="${DENO_INSTALL}/bin/:${PATH}"
RUN deno upgrade \
--canary \
--version=7bcf1211a1494c188c9de83670d328c0492de98a
--version=cbddf5756e07fbbe10bd35d23bb9e9c0c685442a

# the kernel needs the deno kernelspec discoverable locally before it can start
# hadolint ignore=DL3059
Expand Down
28 changes: 16 additions & 12 deletions deno/packages/deps.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
import "https://deno.land/std/assert/mod.ts";
import "https://deno.land/std@0.201.0/assert/mod.ts";
import "https://deno.land/x/[email protected]/mod.ts";
import "https://deno.land/x/deno_dom/deno-dom-wasm-noinit.ts";
import "https://deno.land/x/display/mod.ts";
import "https://deno.land/x/skia_canvas/mod.ts";
import "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm-noinit.ts";
import "https://deno.land/x/display@v1.0.1/mod.ts";
import "https://deno.land/x/skia_canvas@0.5.4/mod.ts";

import "https://esm.sh/jsdom";
import "https://esm.sh/twind";
import "https://esm.sh/[email protected]";
import "https://esm.sh/[email protected]";
import "https://esm.sh/@observablehq/[email protected]";

import "npm:apache-arrow";
import "npm:d3";
import "npm:express";
import "npm:nodejs-polars";
import "npm:react";
import "npm:vega-lite-api";
import "npm:[email protected]";
import "npm:[email protected]";
import "npm:[email protected]";
import "npm:[email protected]";
import "npm:[email protected]";
import "npm:[email protected]";
import "npm:@observablehq/[email protected]";

import "https://cdn.jsdelivr.net/npm/@observablehq/[email protected]/+esm";

0 comments on commit 3054b19

Please sign in to comment.