Update deps

This commit is contained in:
Anton Medvedev 2023-03-28 17:15:22 +02:00
commit 363bb1be96
126 changed files with 5743 additions and 2737 deletions

34
node_modules/webpod/README.md generated vendored Normal file
View file

@ -0,0 +1,34 @@
# Webpod
```js
import { ssh } from 'webpod'
const $ = ssh('user@host')
const branch = await $`git branch --show-current`
await $`echo ${branch}`
await $`mkdir /tmp/${'foo bar'}`
```
## Installation
```sh
npm install webpod
```
```sh
deno install -A -r https://deno.land/x/webpod/webpod.ts
```
## Usage
### ssh()
```js
ssh('user@host', {port: 22, options: ['StrictHostKeyChecking=no']})
```
## License
[MIT](LICENSE)