Skip to content

Commit b2ca175

Browse files
committed
0.10.3
1 parent c995ee1 commit b2ca175

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To install, run the following command. This will make the `dext` CLI available
1919
in your path.
2020

2121
```
22-
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable -f -n dext https://deno.land/x/dext@0.10.2/cli.ts
22+
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable -f -n dext https://deno.land/x/dext@0.10.3/cli.ts
2323
```
2424

2525
## Getting started

cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { exportCommand } from "./src/export.ts";
1616
import { serve } from "./src/serve.ts";
1717
import { findPages, printError } from "./src/util.ts";
1818

19-
const VERSION = "0.10.2";
19+
const VERSION = "0.10.3";
2020

2121
try {
2222
await new Command()

example/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM hayd/alpine-deno:1.6.1 as builder
1+
FROM hayd/alpine-deno:1.7.0 as builder
22
WORKDIR /app
3-
RUN deno cache --unstable https://deno.land/x/dext@0.10.2/cli.ts
3+
RUN deno cache --unstable https://deno.land/x/dext@0.10.3/cli.ts
44
COPY deps.ts deps.ts
55
COPY tsconfig.json tsconfig.json
66
RUN deno cache -c tsconfig.json deps.ts
77
COPY . .
8-
RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/dext@0.10.2/cli.ts build
8+
RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/dext@0.10.3/cli.ts build
99

10-
FROM hayd/alpine-deno:1.6.1
10+
FROM hayd/alpine-deno:1.7.0
1111
WORKDIR /app
12-
RUN deno cache --unstable https://deno.land/x/dext@0.10.2/cli.ts
12+
RUN deno cache --unstable https://deno.land/x/dext@0.10.3/cli.ts
1313
COPY --from=builder /app/.dext /app/.dext
14-
CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/dext@0.10.2/cli.ts", "start" ]
14+
CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/dext@0.10.3/cli.ts", "start" ]

example/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export type {
88
GetStaticDataContext,
99
GetStaticPaths,
1010
PageProps,
11-
} from "https://deno.land/x/dext@0.10.2/mod.ts";
11+
} from "https://deno.land/x/dext@0.10.3/mod.ts";

0 commit comments

Comments
 (0)