Skip to content

Commit

Permalink
fix(Deno microkernel): FIx semver requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Dec 6, 2021
1 parent 80173bc commit c30940c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/kernel-deno/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub fn new() -> MicroKernel {
MicroKernel::new(
"udeno",
&["javascript", "typescript"],
("deno", ">1.7"),
("deno", ">=1.7"),
&["run", "--quiet", "--unstable", "{{script}}"],
include_file!("deno-kernel.ts"),
&[include_file!("deno-codec.ts")],
Expand Down

0 comments on commit c30940c

Please sign in to comment.