Compare commits
No commits in common. "b45dc32c74d84c9f787ebce7a174c9aa1d411fc2" and "46ba1d4cd0ee7ec0d0cfe447646afc1618b3cad3" have entirely different histories.
b45dc32c74
...
46ba1d4cd0
|
@ -6,6 +6,7 @@
|
|||
],
|
||||
"strict": true
|
||||
},
|
||||
"importMap": "import_map.json",
|
||||
"lint": {
|
||||
"files": {
|
||||
"include": [
|
||||
|
|
|
@ -9,10 +9,7 @@
|
|||
let pkgs = import nixpkgs { system = sys; }; in
|
||||
{
|
||||
devShell = pkgs.mkShell {
|
||||
nativeBuildInputs = [
|
||||
pkgs.bashInteractive
|
||||
pkgs.deno
|
||||
];
|
||||
nativeBuildInputs = [ pkgs.bashInteractive pkgs.deno ];
|
||||
shellHook = ''
|
||||
echo "Testing deno's installed version:"
|
||||
deno --version
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
# Runs deno at src/d3_deno.ts with arguments ["example.txt"]
|
||||
echo "example.txt"
|
||||
deno run --allow-read "${PWD}/src/d3_deno.ts" "${PWD}/data/example.txt"
|
||||
deno run --allow-read src/d3_deno.ts "example.txt"
|
||||
|
||||
echo "submission.txt"
|
||||
deno run --allow-read "${PWD}/src/d3_deno.ts" "${PWD}/data/submission.txt"
|
||||
deno run --allow-read src/d3_deno.ts "submission.txt"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue