Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Oct 3, 2023
1 parent 98d930a commit 706e099
Show file tree
Hide file tree
Showing 38 changed files with 1,223 additions and 1,587 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version-file: .node-version
cache: "pnpm"

- name: 📦 Install dependencies
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version-file: example/.node-version
cache: "pnpm"

- name: 📦 Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version-file: .node-version
cache: "pnpm"

- name: 📦 Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
node-version-file: .node-version
cache: "pnpm"

- name: 📦 Install dependencies
Expand Down
1 change: 1 addition & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export default defineConfig({

themeConfig: {
logo: "/logo.png",
externalLinkIcon:true,
socialLinks: [
{
icon: "github",
Expand Down
14 changes: 1 addition & 13 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
#bd34fe,
#41d1ff
);
}

:root {
--vp-c-brand: #3c98fd;
--vp-c-brand-light: #50a2fd;
--vp-c-brand-lighter: #62abfd;
--vp-c-brand-dark: #3586df;
--vp-c-brand-darker: #2f76c4;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe, #41d1ff);
}
24 changes: 12 additions & 12 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
"prepare": "simple-git-hooks"
},
"dependencies": {
"discord-player-plus": "^2.0.0",
"discord.js": "^14.11.0",
"discord-player-plus": "^2.0.1",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^18.17.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"@types/node": "^18.18.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"tsup": "^6.7.0",
"typescript": "~5.1.6"
"tsup": "^7.2.0",
"typescript": "~5.2.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
Expand Down
4 changes: 2 additions & 2 deletions example/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ slashCommands.push(
iconUrl: "https://avatars.githubusercontent.com/u/67898185?v=4",
},
footerText: "Thanks for using discord-player-plus",
})
}),
);

client
Expand All @@ -77,7 +77,7 @@ client
await handleSlashCommand(
interaction,
slashCommands,
playerManager.translations
playerManager.translations,
);
});

Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "discord-player-plus",
"description": "Library for quickly creating discord music and sound bots using discord.js v14.",
"version": "2.0.1",
"packageManager": "pnpm@8.6.10",
"packageManager": "pnpm@8.8.0",
"license": "MIT",
"homepage": "https://discordplayerplus.lars-rickert.de",
"files": [
Expand Down Expand Up @@ -47,33 +47,33 @@
},
"dependencies": {
"deepmerge-ts": "^5.1.0",
"discord-api-types": "~0.37.50",
"discord-api-types": "~0.37.59",
"isomorphic-unfetch": "^4.0.2",
"libsodium-wrappers": "~0.7.11",
"libsodium-wrappers": "~0.7.13",
"music-metadata": "^7.13.4",
"play-dl": "^1.9.6",
"spotify-url-info": "^3.2.5",
"play-dl": "^1.9.7",
"spotify-url-info": "^3.2.8",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.17.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"semantic-release": "^21.0.7",
"@types/node": "^18.18.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitest/coverage-v8": "~0.34.6",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"simple-git-hooks": "^2.9.0",
"tsup": "^6.7.0",
"typescript": "^5.1.6",
"vitepress": "1.0.0-beta.6",
"vitest": "~0.33.0",
"vitest-mock-extended": "^1.1.4"
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitepress": "^1.0.0-rc.20",
"vitest": "~0.34.6",
"vitest-mock-extended": "^1.3.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
Expand Down
Loading

0 comments on commit 706e099

Please sign in to comment.