Skip to content

Commit 77aa4b5

Browse files
renovate[bot]favna
andauthored
fix(deps): update all non-major dependencies (#368)
* fix(deps): update all non-major dependencies * chore: did everything * chore: please forgive me --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jeroen Claassens <jeroen.claassens@rws.nl>
1 parent 9d70726 commit 77aa4b5

File tree

7 files changed

+810
-1052
lines changed

7 files changed

+810
-1052
lines changed
Lines changed: 191 additions & 191 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ plugins:
1010
- path: .yarn/plugins/@yarnpkg/plugin-git-hooks.cjs
1111
spec: 'https://raw.githubusercontent.com/trufflehq/yarn-plugin-git-hooks/main/bundles/%40yarnpkg/plugin-git-hooks.js'
1212

13-
yarnPath: .yarn/releases/yarn-4.11.0.cjs
13+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

package.json

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"lint": "eslint src --ext ts --fix",
2020
"prettier": "prettier --ignore-path=.prettierignore",
2121
"format": "prettier --write .",
22-
"build": "tsup",
23-
"watch": "tsup --watch",
22+
"build": "tsdown",
23+
"watch": "tsdown --watch",
2424
"clean": "rimraf dist/",
2525
"typecheck": "tsc -b src",
26-
"dev": "tsup --watch --onSuccess \"yarn start\""
26+
"dev": "tsdown --watch --onSuccess \"yarn start\""
2727
},
2828
"dependencies": {
2929
"@discordjs/builders": "^1.13.0",
@@ -43,7 +43,7 @@
4343
"binarytf": "^2.1.3",
4444
"bufferutil": "^4.0.9",
4545
"colorette": "^2.0.20",
46-
"discord.js": "^14.24.2",
46+
"discord.js": "^14.25.1",
4747
"figlet": "^1.9.4",
4848
"gradient-string": "^3.0.0",
4949
"ioredis": "^5.8.2",
@@ -56,8 +56,8 @@
5656
"@commitlint/config-conventional": "^20.0.0",
5757
"@sapphire/eslint-config": "^5.0.6",
5858
"@sapphire/prettier-config": "^2.0.0",
59-
"@sapphire/ts-config": "^5.0.1",
60-
"@swc/core": "^1.15.2",
59+
"@sapphire/ts-config": "^5.0.3",
60+
"@swc/core": "^1.15.3",
6161
"@types/figlet": "^1.7.0",
6262
"@types/gradient-string": "^1.1.6",
6363
"@types/node": "24.10.1",
@@ -68,27 +68,22 @@
6868
"eslint": "^8.57.1",
6969
"eslint-config-prettier": "^10.1.8",
7070
"eslint-plugin-prettier": "^5.5.4",
71-
"lint-staged": "^16.2.6",
72-
"prettier": "^3.6.2",
73-
"rimraf": "^6.1.0",
74-
"tsup": "^8.5.1",
75-
"typescript": "~5.4.5"
76-
},
77-
"resolutions": {
78-
"ansi-regex": "^5.0.1",
79-
"minimist": "^1.2.8"
80-
},
81-
"engines": {
82-
"node": ">=16.6.0",
83-
"npm": ">=7.24.2"
71+
"lint-staged": "^16.2.7",
72+
"prettier": "^3.7.1",
73+
"rimraf": "^6.1.2",
74+
"tsdown": "^0.16.8",
75+
"typescript": "~5.9.3"
8476
},
8577
"commitlint": {
8678
"extends": [
8779
"@commitlint/config-conventional"
8880
]
8981
},
9082
"eslintConfig": {
91-
"extends": "@sapphire"
83+
"extends": "@sapphire",
84+
"rules": {
85+
"@typescript-eslint/unbound-method": "off"
86+
}
9287
},
9388
"lint-staged": {
9489
"*": "prettier --ignore-unknown --write",
@@ -99,5 +94,5 @@
9994
"path": "./node_modules/cz-conventional-changelog"
10095
}
10196
},
102-
"packageManager": "yarn@4.11.0"
97+
"packageManager": "yarn@4.12.0"
10398
}

src/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
"extends": "../tsconfig.base.json",
33
"compilerOptions": {
44
"outDir": "../dist",
5-
"rootDir": "."
5+
"rootDir": ".",
6+
"paths": {
7+
"#lib/*": ["./lib/*.js"],
8+
"#root/*": ["./*.js"],
9+
"#utils/*": ["./lib/util/*.js"],
10+
"#gql/*": ["./lib/gql/*.js"],
11+
"#lib/env": ["./lib/env/index.js"]
12+
}
613
},
714
"include": ["."]
815
}

tsconfig.eslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "./tsconfig.base.json",
3-
"include": ["src", "scripts", "tsup.config.ts", "index.mjs"]
3+
"include": ["src", "scripts", "tsdown.config.ts", "index.mjs"]
44
}
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
import { defineConfig } from 'tsup';
1+
import { defineConfig } from 'tsdown';
22

33
export default defineConfig({
44
clean: true,
5-
dts: false,
65
entry: ['src/**'],
7-
format: ['esm'],
6+
dts: false,
7+
unbundle: true,
88
minify: false,
99
skipNodeModulesBundle: true,
1010
sourcemap: true,
11-
target: 'esnext',
11+
target: 'es2024',
1212
tsconfig: 'src/tsconfig.json',
13-
bundle: false,
14-
shims: false,
15-
keepNames: true,
16-
splitting: false
13+
treeshake: true,
14+
format: 'esm'
1715
});

0 commit comments

Comments
 (0)