|
5 | 5 | }, |
6 | 6 | "tasks": { |
7 | 7 | // runs this source checkout, args will be passed |
8 | | - "run": "deno run --unstable -A ./entrypoint.ts", |
| 8 | + "run": "deno run --unstable-fs --unstable-ffi -A ./entrypoint.ts", |
9 | 9 |
|
10 | 10 | // you can specify paths to specific tests if you need |
11 | 11 | // follows is the ideal permissions lines, unfortunately deno considers making symlinks to require full read/write permissions for fuck knows why reasons |
12 | 12 | //"test": "deno test --allow-read=$PWD,$TMPDIR,$HOME,/ --allow-env --allow-write=$TMPDIR --allow-ffi --unstable", |
13 | | - "test": "deno test --allow-read --allow-env --allow-write --allow-ffi --unstable", |
| 13 | + "test": "deno test --unstable-ffi --allow-ffi --allow-read --allow-env --allow-write", |
14 | 14 | // ^^ ffi & unstable needed for execve.ts |
15 | 15 |
|
16 | 16 | // installs to /usr/local/bin/pkgx |
17 | 17 | "install": "deno task compile && ./pkgx +gnu.org/coreutils /usr/bin/sudo install -D ./pkgx /usr/local/bin/pkgx", |
18 | 18 |
|
19 | 19 | //--------------------------------------- ci/cd/admin |
20 | | - "coverage" : "scripts/run-coverage.sh", |
21 | | - "typecheck": "deno check --unstable ./entrypoint.ts", |
22 | | - "compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable --output $INIT_CWD/pkgx ./entrypoint.ts" |
| 20 | + "coverage": "scripts/run-coverage.sh", |
| 21 | + "typecheck": "deno check ./entrypoint.ts", |
| 22 | + "compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable-ffi --unstable-fs --output \"$INIT_CWD/pkgx\" ./entrypoint.ts" |
23 | 23 | }, |
24 | | - "pkgx": "deno~1.39", |
| 24 | + "pkgx": "deno~1.45.5", |
25 | 25 | "lint": { |
26 | 26 | "exclude": ["src/**/*.test.ts"] |
27 | 27 | }, |
|
33 | 33 | "pkgx": "https://deno.land/x/[email protected]/mod.ts", |
34 | 34 | "pkgx/": "https://deno.land/x/[email protected]/src/", |
35 | 35 | "outdent": "https://deno.land/x/[email protected]/mod.ts", |
36 | | - "cliffy/": "https://deno.land/x/[email protected].3/", |
37 | | - "deno/": "https://deno.land/std@0.196.0/" // cliffy is on 196 so we standardized on it |
| 36 | + "cliffy/": "https://deno.land/x/[email protected].4/", |
| 37 | + "deno/": "https://deno.land/std@0.221.0/" // cliffy is on 221 so we standardized on it |
38 | 38 | } |
39 | 39 | } |
0 commit comments