Skip to content

Commit 7b4a72e

Browse files
committed
fix: remove tinube and tnyim
1 parent 6f6e2ea commit 7b4a72e

8 files changed

Lines changed: 2601 additions & 5604 deletions

File tree

.eslintcache

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.oxlintrc.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"$schema": "./node_modules/oxlint/configuration_schema.json",
3+
"plugins": [
4+
"import",
5+
"typescript",
6+
"unicorn"
7+
],
8+
"env": {
9+
"browser": false
10+
},
11+
"globals": {
12+
"foo": "readonly"
13+
},
14+
"settings": {},
15+
"rules": {
16+
"eqeqeq": "warn",
17+
"no-thenable": "error"
18+
},
19+
"overrides": [
20+
{
21+
"files": [
22+
"*.test.ts",
23+
"*.spec.ts"
24+
],
25+
"rules": {
26+
"@typescript-eslint/no-explicit-any": "off"
27+
}
28+
}
29+
]
30+
}

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Type: `object`
6262
Type: `string`
6363

6464
Service to use for shortening links. Defaults to `isgd`
65-
Available providers: `''isgd' | 'cdpt' | 'vgd' | '4hnet' | 'tinube' | 'rbgy' | 'vurl' | 'haha' | 'pwm' | 'cya' | 'hideuri`
65+
Available providers: `''isgd' | 'cdpt' | 'vgd' | '4hnet' | 'rbgy' | 'vurl' | 'haha' | 'pwm' | 'cya' | 'hideuri`
6666

6767
##### timeout
6868

@@ -78,7 +78,6 @@ Url shortner supports the following providers.
7878
| ----------- | ------ |
7979
| is.gd | ✔️ |
8080
| cdpt.in | ✔️ |
81-
| tinu.be | ✔️ |
8281
| v.gd | ✔️ |
8382
| rb.gy | ✔️ |
8483
| 4h.net | ✔️ |
@@ -87,7 +86,6 @@ Url shortner supports the following providers.
8786
| haha.se | ✔️ |
8887
| cya.se | ✔️ |
8988
| hideuri.com | ✔️ |
90-
| tny.im | ✔️ |
9189

9290
## Contributing
9391

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "2.8.4",
44
"description": "Library to shorten url without any api keys",
55
"type": "module",
6-
"packageManager": "pnpm@7.33.7",
6+
"packageManager": "pnpm@10.16.1",
77
"author": "Rubin Bhandari <[email protected]>",
88
"license": "MIT",
99
"homepage": "https://github.com/rubiin/url-minify#readme",
@@ -36,7 +36,8 @@
3636
],
3737
"scripts": {
3838
"build": "tsup",
39-
"lint": "eslint '{src,test}/**/*.ts' --cache --fix",
39+
"lint": "oxlint",
40+
"lint:fix": "oxlint --fix",
4041
"prepublishOnly": "nr build",
4142
"release": "bumpp && clean-publish",
4243
"start": "esno src/index.ts",
@@ -45,23 +46,22 @@
4546
"typecheck": "tsc --noEmit"
4647
},
4748
"devDependencies": {
48-
"@antfu/eslint-config": "^5.1.0",
4949
"@antfu/ni": "^25.0.0",
50-
"@types/node": "^22.16.5",
51-
"bumpp": "^9.11.1",
50+
"@types/node": "^22.18.3",
51+
"bumpp": "^10.2.3",
5252
"clean-publish": "^5.2.2",
53-
"eslint": "^8.57.1",
5453
"esno": "^4.8.0",
54+
"oxlint": "^1.15.0",
5555
"prettier": "^3.6.2",
5656
"rimraf": "^6.0.1",
5757
"tsup": "^8.5.0",
58-
"typescript": "^5.8.3",
59-
"unbuild": "^2.0.0",
58+
"typescript": "^5.9.2",
59+
"unbuild": "^3.6.1",
6060
"vite": "^7.0.7",
61-
"vitest": "^2.0.5"
61+
"vitest": "^2.1.9"
6262
},
6363
"dependencies": {
64-
"axios": "^1.11.0"
64+
"axios": "^1.12.1"
6565
},
6666
"clean-publish": {
6767
"cleanDocs": true,

0 commit comments

Comments
 (0)