-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix watch mode for deno 1.8, release 0.10.5 (#68)
- Loading branch information
1 parent
22bae6a
commit d0cd496
Showing
6 changed files
with
22 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected].4/cli.ts | ||
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --unstable -f -n dext https://deno.land/x/[email protected].5/cli.ts | ||
``` | ||
|
||
## Getting started | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM hayd/alpine-deno:1.7.5 as builder | ||
WORKDIR /app | ||
RUN deno cache --unstable https://deno.land/x/[email protected].4/cli.ts | ||
RUN deno cache --unstable https://deno.land/x/[email protected].5/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/[email protected].4/cli.ts build | ||
RUN deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable https://deno.land/x/[email protected].5/cli.ts build | ||
|
||
FROM hayd/alpine-deno:1.7.5 | ||
WORKDIR /app | ||
RUN deno cache --unstable https://deno.land/x/[email protected].4/cli.ts | ||
RUN deno cache --unstable https://deno.land/x/[email protected].5/cli.ts | ||
COPY --from=builder /app/.dext /app/.dext | ||
CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/[email protected].4/cli.ts", "start" ] | ||
CMD [ "deno", "run", "--allow-read", "--allow-net", "--allow-env", "--unstable", "https://deno.land/x/[email protected].5/cli.ts", "start" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ export type { | |
GetStaticDataContext, | ||
GetStaticPaths, | ||
PageProps, | ||
} from "https://deno.land/x/[email protected].4/mod.ts"; | ||
} from "https://deno.land/x/[email protected].5/mod.ts"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters