Skip to content
This repository was archived by the owner on Feb 21, 2026. It is now read-only.

Commit 17138dc

Browse files
authored
Develop (#1)
* + Minor update. * + Update README.md. * + Update parsing. * + Remove log.
1 parent f6528da commit 17138dc

File tree

7 files changed

+92
-225
lines changed

7 files changed

+92
-225
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Bato
22

3-
This is the plugin for bato.to.
3+
This is the plugin for bato.to. Still under construction.
4+
5+
## TODO
6+
7+
- [ ] This site needs cookie to work properly (Cloudflare). If a 'Set-Cookie' is received then Rulia should obey this header.

build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function deleteFolderRecursive (directory) {
3030
async function main () {
3131
// Step 1: Execute tsc
3232
try {
33-
execSync('npm run build:lib')
33+
execSync('rollup -c')
3434
console.log('Lib build completed.')
3535
} catch (error) {
3636
console.error(`Error during tsc: ${error}`)

package-lock.json

Lines changed: 28 additions & 188 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
2-
"name": "@rulia/plugin.bato",
2+
"name": "@rulia/bato",
33
"version": "0.1.0",
44
"description": "Bato manga plugin.",
55
"private": true,
66
"scripts": {
7-
"build:lib": "rollup -c",
8-
"build": "npm run build:lib && node build.js"
7+
"build": "node build.js"
98
},
109
"devDependencies": {
1110
"@lancercomet/eslint-config-eslint-rules": "^0.1.0",
1211
"@rollup/plugin-commonjs": "^25.0.7",
1312
"@rollup/plugin-node-resolve": "^15.2.3",
1413
"@rollup/plugin-typescript": "^11.1.6",
15-
"@rulia/types": "^0.4.0",
14+
"@rulia/types": "^0.5.0",
15+
"@types/jquery": "^3.5.29",
1616
"@typescript-eslint/eslint-plugin": "^6.5.0",
1717
"@typescript-eslint/parser": "^6.5.0",
1818
"archiver": "^6.0.1",
@@ -27,6 +27,6 @@
2727
"typescript": "^5.2.2"
2828
},
2929
"dependencies": {
30-
"cheerio": "^1.0.0-rc.12"
30+
"jquery": "^3.7.1"
3131
}
3232
}

0 commit comments

Comments
 (0)