From 238314aa7073229b4e8d1ee74a717f98adc76743 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Wed, 11 Nov 2020 19:57:09 +0100 Subject: [PATCH] 0.9.2 --- README.md | 2 +- cli.ts | 2 +- example/Dockerfile | 10 +++++----- example/deps.ts | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 088528e..c321e1d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The Preact Framework for Deno. Dext.ts is heavily inspired by Next.js. To install, run the following command. This will make the `dext` CLI available in your path. ``` -deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable --no-check -f -n dext https://deno.land/x/dext@0.9.1/cli.ts +deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable -f -n dext https://deno.land/x/dext@0.9.2/cli.ts ``` ## Getting started diff --git a/cli.ts b/cli.ts index e154101..dfe6fd1 100644 --- a/cli.ts +++ b/cli.ts @@ -16,7 +16,7 @@ import { exportCommand } from "./src/export.ts"; import { serve } from "./src/serve.ts"; import { findPages, printError } from "./src/util.ts"; -const VERSION = "0.9.1"; +const VERSION = "0.9.2"; try { await new Command() diff --git a/example/Dockerfile b/example/Dockerfile index b6a4243..48fe0ea 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,17 +1,17 @@ FROM hayd/alpine-deno:1.4.4 as builder WORKDIR /app # See https://github.com/denoland/deno/issues/7145 -RUN deno cache --no-check --unstable https://deno.land/x/dext@0.9.1/cli.ts +RUN deno cache --no-check --unstable https://deno.land/x/dext@0.9.2/cli.ts COPY deps.ts deps.ts COPY tsconfig.json tsconfig.json RUN deno cache -c tsconfig.json deps.ts COPY . . -RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/dext@0.9.1/cli.ts build +RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/dext@0.9.2/cli.ts build FROM hayd/alpine-deno:1.4.4 WORKDIR /app # See https://github.com/denoland/deno/issues/7145 -RUN deno cache --no-check --unstable https://deno.land/x/dext@0.9.1/cli.ts -RUN deno cache --unstable https://deno.land/x/dext@0.9.1/cli.ts +RUN deno cache --no-check --unstable https://deno.land/x/dext@0.9.2/cli.ts +RUN deno cache --unstable https://deno.land/x/dext@0.9.2/cli.ts COPY --from=builder /app/.dext /app/.dext -CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/dext@0.9.1/cli.ts", "start" ] +CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/dext@0.9.2/cli.ts", "start" ] diff --git a/example/deps.ts b/example/deps.ts index adb18ab..d050001 100644 --- a/example/deps.ts +++ b/example/deps.ts @@ -1,4 +1,4 @@ -export { Fragment, h } from "https://deno.land/x/dext@0.9.1/deps/preact/mod.ts"; +export { Fragment, h } from "https://deno.land/x/dext@0.9.2/deps/preact/mod.ts"; export type { AppProps, DocumentProps, @@ -6,4 +6,4 @@ export type { GetStaticDataContext, GetStaticPaths, PageProps, -} from "https://deno.land/x/dext@0.9.1/mod.ts"; +} from "https://deno.land/x/dext@0.9.2/mod.ts";