You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assets/site/0005-manual.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -290,7 +290,7 @@ Well that's not _super_ helpful! Let us study each these keys, one-by-one:
290
290
|`fs`| a few sugar methods, `{ readFile, writeFile, mkdirp }` that work on strings, vs buffers, and assume utf8 for shorthand |
291
291
|`sh`| execute a shell command. see the command task section above! |
292
292
|`dependentResults`| results of `dependsOn` tasks. currently these are untyped. getting type inference here is tricky. PRs welcome! |
293
-
|`logger`| the `rad` logger! a standard `Deno` logger with the commonplace log-level methods (e.g. `.info(...)`, `.debug(...)`, etc). see [the source](https://github.com/cdaringe/rad/blob/v8.0.1/src/logger.ts)|
293
+
|`logger`| the `rad` logger! a standard `Deno` logger with the commonplace log-level methods (e.g. `.info(...)`, `.debug(...)`, etc). see [the source](https://github.com/cdaringe/rad/blob/v8.0.2/src/logger.ts)|
294
294
|`path`| a direct reference to [deno node path](https://deno.land/std/node/path.ts). this API is likely to change if Deno implements a full, proper path module |
295
295
|`task`| a reference to the internal `RadTask`|
296
296
|`iter`|`AsyncIterable` utility functions |
@@ -306,7 +306,7 @@ v8.
306
306
```bash
307
307
#!/bin/sh
308
308
# generated by deno install
309
-
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-hrtime 'https://raw.githubusercontent.com/cdaringe/rad/v8.0.1/src/bin.ts'"$@"
309
+
exec deno run --allow-read --allow-write --allow-net --allow-env --allow-run --allow-hrtime 'https://raw.githubusercontent.com/cdaringe/rad/v8.0.2/src/bin.ts'"$@"
310
310
```
311
311
312
312
- extract the `deno run ...` command, drop the leading `exec` and trailing `$@`,
0 commit comments