-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
20 additions
and
14 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
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 @@ | ||
{ | ||
"tasks": { | ||
"check": "deno task check:mod && deno task check:ext && deno task check:examples", | ||
"check:mod": "deno check --unstable mod.ts", | ||
"check:ext": "deno check --unstable ext/*.ts", | ||
"check:examples": "deno check --unstable examples/*.ts", | ||
"test": "deno test --unstable -A test/test.ts", | ||
"example:hello_python": "deno run -A --unstable examples/hello_python.ts", | ||
"example:matplotlib": "deno run -A --unstable examples/matplotlib.ts", | ||
"example:pip_import": "deno run -A --unstable examples/pip_import.ts", | ||
"example:run_code": "deno run -A --unstable examples/run_code.ts", | ||
"example:tensorflow": "deno run -A --unstable examples/tensorflow.ts" | ||
"check:mod": "deno check --unstable-ffi mod.ts", | ||
"check:ext": "deno check --unstable-ffi ext/*.ts", | ||
"check:examples": "deno check --unstable-ffi examples/*.ts", | ||
"test": "deno test --unstable-ffi -A test/test.ts", | ||
"example:hello_python": "deno run -A --unstable-ffi examples/hello_python.ts", | ||
"example:matplotlib": "deno run -A --unstable-ffi examples/matplotlib.ts", | ||
"example:pip_import": "deno run -A --unstable-ffi examples/pip_import.ts", | ||
"example:run_code": "deno run -A --unstable-ffi examples/run_code.ts", | ||
"example:tensorflow": "deno run -A --unstable-ffi examples/tensorflow.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