pkgx
pkgx copied to clipboard
the last thing you’ll install
Fixed Path.ts to get pass first Tea Path error (1- changing slashes for windows and 2- using another deno function that has to do with symlink)
This should be sufficient: ```typescript const c = undent` #include int main() { printf("Hello World!\n"); return 0; } ` Deno.write("test.c", c) try { run({ cmd: ["clang", "-o", "out", "test.c" }]...
Closes #145. Following is the help generated from [teaxyz/cli/README.md](https://raw.githubusercontent.com/teaxyz/cli/main/README.md) Since the target description is muliptline, I haven't find a good way to display the description. ```sh $ tea run --help...
Runs the repl or commands inside a sandboxed environment. The sandbox allows everything by default, and then disables writes to all files under TEA_PREFIX. Fixes #77 --- edit: ok, there's...
I have some arbitrary command named /usr/local/bin/twhich installed. Should this work? ``` > /opt/tea/tea.xyz/v*/bin/tea twhich Usage: twhich [ -aIrV ] [ -K command file ] file Usage: twhich -s -K...
### Motivation According to the [comments on the getVersion method](https://github.com/teaxyz/cli/blob/e36d296ebe93890d8bbdf3f8e2f231e854c9b65c/src/hooks/useGitHubAPI.ts#L34): > GitHub tags API returns in reverse alphabetical order so we have to use their graphql endpoint, [which] sadly requires...
`deno` doesn’t provide it, but we can get it with the [ffi api](https://deno.land/[email protected]/runtime/ffi_api)