Compare commits

..

No commits in common. 'master' and 'master' have entirely different histories.

@ -0,0 +1,9 @@
pipeline:
test:
image: denoland/deno:alpine
commands:
- deno test -A --unstable tests/index.ts
lint:
image: denoland/deno:alpine
commands:
- deno lint

@ -1,5 +0,0 @@
pipeline:
lint:
image: denoland/deno:debian
commands:
- deno lint

@ -1,23 +0,0 @@
pipeline:
buildBuilder:
image: denoland/deno:debian
commands:
- deno compile -A buildNode.ts
- chmod a+x buildNode
build:
image: node:current-buster
commands:
- ./buildNode
deploy:
image: plugins/npm
settings:
username: ruthenic
token:
from_secret: NPM_API_KEY
folder: npm
when:
event: tag
depends_on:
- lint
- test

@ -1,5 +0,0 @@
pipeline:
test:
image: denoland/deno:debian
commands:
- deno test -A --unstable tests/index.ts

@ -1,24 +0,0 @@
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>

@ -1,6 +1,6 @@
# wattpad-deno
early library for accessing Wattpad using Deno (or Node via [DNT](https://github.com/denoland/dnt))
early library for accessing Wattpad using Deno
## Q&A
@ -10,4 +10,5 @@ Why not
### Docs?
The API _should_ be pretty self-explanitory, if anything through deno.land's built in docs generator (alternatively, if you're on Node just use type hints in your IDE ig)
The API _should_ be pretty self-explanitory, if anything through deno.land's
built in docs generator

@ -1,5 +1,4 @@
import { build, emptyDir } from "https://deno.land/x/dnt@0.33.1/mod.ts";
import { VERSION } from "./mod.ts";
await emptyDir("./npm");
@ -36,11 +35,10 @@ await build({
},
package: {
name: "wattpad",
version: VERSION,
description: "unofficial Wattpad API wrapper",
version: Deno.args[0],
description: "new air wyatts",
license: "Unlicense",
},
});
Deno.copyFileSync("README.md", "npm/README.md");
Deno.copyFileSync("LICENSE", "npm/LICENSE");

@ -5,5 +5,5 @@ import Chapter from "./src/classes/Chapter.ts";
import Search from "./src/classes/Search.ts";
import Story from "./src/classes/Story.ts";
import User from "./src/classes/User.ts";
const VERSION = "v0.3.0";
const VERSION = "v0.2.0";
export { Chapter, Search, Story, User, VERSION, Wattpad };

Loading…
Cancel
Save