Skip to content

Commit

Permalink
0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Feb 19, 2021
1 parent 71fdf84 commit 22bae6a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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 -f -n dext https://deno.land/x/dext@0.10.3/cli.ts
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable -f -n dext https://deno.land/x/dext@0.10.4/cli.ts
```

## Getting started
Expand Down
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.3";
const VERSION = "0.10.4";

try {
await new Command()
Expand Down
22 changes: 11 additions & 11 deletions deps/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@ export { persistSourceMaps } from "https://raw.githubusercontent.com/denofn/deno
export { emitFiles } from "https://raw.githubusercontent.com/denofn/denopack/8bae39bef47e532a1e8d0f6700b72a2192f7bca4/cli/emitFiles.ts";

// std
export * as colors from "https://deno.land/std@0.84.0/fmt/colors.ts";
export * as path from "https://deno.land/std@0.84.0/path/mod.ts";
export * as fs from "https://deno.land/std@0.84.0/fs/mod.ts";
export { deferred, pooledMap } from "https://deno.land/std@0.84.0/async/mod.ts";
export { format as dateFormat } from "https://deno.land/std@0.84.0/datetime/mod.ts";
export * as colors from "https://deno.land/std@0.88.0/fmt/colors.ts";
export * as path from "https://deno.land/std@0.88.0/path/mod.ts";
export * as fs from "https://deno.land/std@0.88.0/fs/mod.ts";
export { deferred, pooledMap } from "https://deno.land/std@0.88.0/async/mod.ts";
export { format as dateFormat } from "https://deno.land/std@0.88.0/datetime/mod.ts";

export {
Command,
CompletionsCommand,
HelpCommand,
} from "https://deno.land/x/cliffy@v0.17.0/command/mod.ts";
export { Table } from "https://deno.land/x/cliffy@v0.17.0/table/mod.ts";
} from "https://deno.land/x/cliffy@v0.17.2/command/mod.ts";
export { Table } from "https://deno.land/x/cliffy@v0.17.2/table/mod.ts";

export * as oak from "https://deno.land/x/oak@v6.4.2/mod.ts";
export * as oak from "https://deno.land/x/oak@v6.5.0/mod.ts";
// path_to_regexp
export { compile } from "https://deno.land/x/oak@v6.4.2/deps.ts";
export { compile } from "https://deno.land/x/oak@v6.5.0/deps.ts";
// WebSocket
export { isWebSocketCloseEvent } from "https://deno.land/std@0.84.0/ws/mod.ts";
export type { WebSocket } from "https://deno.land/std@0.84.0/ws/mod.ts";
export { isWebSocketCloseEvent } from "https://deno.land/std@0.88.0/ws/mod.ts";
export type { WebSocket } from "https://deno.land/std@0.88.0/ws/mod.ts";

export { gzipEncode } from "https://deno.land/x/wasm_gzip@v1.0.0/mod.ts";
export { compress as brotliEncode } from "https://deno.land/x/brotli@v0.1.4/mod.ts";
Expand Down
4 changes: 2 additions & 2 deletions deps/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ export {
assert,
assertEquals,
assertStringIncludes,
} from "https://deno.land/std@0.84.0/testing/asserts.ts";
} from "https://deno.land/std@0.88.0/testing/asserts.ts";
export {
copy,
ensureDir,
exists,
} from "https://deno.land/std@0.84.0/fs/mod.ts";
} from "https://deno.land/std@0.88.0/fs/mod.ts";
import { path } from "./mod.ts";
export const join = path.join;
12 changes: 6 additions & 6 deletions example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM hayd/alpine-deno:1.7.0 as builder
FROM hayd/alpine-deno:1.7.5 as builder
WORKDIR /app
RUN deno cache --unstable https://deno.land/x/dext@0.10.3/cli.ts
RUN deno cache --unstable https://deno.land/x/dext@0.10.4/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.10.3/cli.ts build
RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/dext@0.10.4/cli.ts build

FROM hayd/alpine-deno:1.7.0
FROM hayd/alpine-deno:1.7.5
WORKDIR /app
RUN deno cache --unstable https://deno.land/x/dext@0.10.3/cli.ts
RUN deno cache --unstable https://deno.land/x/dext@0.10.4/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.10.3/cli.ts", "start" ]
CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/dext@0.10.4/cli.ts", "start" ]
2 changes: 1 addition & 1 deletion example/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export type {
GetStaticDataContext,
GetStaticPaths,
PageProps,
} from "https://deno.land/x/dext@0.10.3/mod.ts";
} from "https://deno.land/x/dext@0.10.4/mod.ts";

0 comments on commit 22bae6a

Please sign in to comment.