Update deps

This commit is contained in:
Bret Comnes
2020-02-10 17:21:26 -07:00
parent 4a1a7ca08a
commit e49d0b8d3a
24 changed files with 25 additions and 25 deletions

33
node_modules/async-neocities/README.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# async-neocities
[![Actions Status](https://github.com/bcomnes/async-neocities/workflows/tests/badge.svg)](https://github.com/bcomnes/async-neocities/actions)
WIP - nothing to see here
```
npm install async-neocities
```
## Usage
``` js
const path = require('path')
const Neocities = require('async-neocities')
async function deploySite () {
const token = await Neocities.getKey('sitename', 'password')
const client = new Neocities(token)
console.log(await client.list()) // site files
console.log(await client.info()) // site info
return client.deploy(path.join(__dirname, './site-contents'))
}
deploySite.then(info => { console.log('done deploying site!') })
.catch(e => { throw e })
```
## License
MIT