Skip to content

Commit e31d180

Browse files
committed
fix: updated deps and removed license
1 parent 8974d9b commit e31d180

File tree

7 files changed

+701
-879
lines changed

7 files changed

+701
-879
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
GITHUB_TOKEN="" # GitHub token
22

3-
NUXT_UI_PRO_LICENSE="" # Production license for @nuxt/ui-pro, get one at https://ui.nuxt.com/pro/purchase
43
NUXT_PUBLIC_SITE_URL="https://projectm-visualizer.org" # Public URL, used for OG Image when running nuxt generate
54
NUXT_PUBLIC_ASSET_KEY="" # Asset encryption key for the public assets
65

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
- name: Build
5555
run: bun run generate
5656
env:
57-
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }}
5857
NUXT_PUBLIC_SITE_URL: ${{ secrets.NUXT_PUBLIC_SITE_URL }}
5958
NUXT_PUBLIC_ASSET_KEY: ${{ secrets.NUXT_PUBLIC_ASSET_KEY }}
6059

app/assets/css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@import "tailwindcss";
2-
@import "@nuxt/ui-pro";
2+
@import "@nuxt/ui";
33

44
@source "../../../content/**/*";
55

app/pages/index.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ onMounted(async () => {
129129
v-if="page.contributors"
130130
class="flex flex-col gap-6 sm:gap-8 pb-16 sm:pb-24 lg:pb-32"
131131
>
132-
<UPageMarquee
132+
<UMarquee
133133
v-if="loadingContributors || batchOne.length"
134134
v-bind="page.contributors"
135135
:ui="{
@@ -163,9 +163,9 @@ onMounted(async () => {
163163
<USkeleton class="h-6 w-24 rounded-full" />
164164
</div>
165165
</template>
166-
</UPageMarquee>
166+
</UMarquee>
167167

168-
<UPageMarquee
168+
<UMarquee
169169
v-if="loadingContributors || batchTwo.length"
170170
v-bind="page.contributors"
171171
:reverse="true"
@@ -200,7 +200,7 @@ onMounted(async () => {
200200
<USkeleton class="h-6 w-24 rounded-full" />
201201
</div>
202202
</template>
203-
</UPageMarquee>
203+
</UMarquee>
204204
</UContainer>
205205

206206
<UPageSection

bun.lock

Lines changed: 669 additions & 845 deletions
Large diffs are not rendered by default.

nuxt.config.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineNuxtConfig({
44
'@nuxtjs/device',
55
'@nuxt/eslint',
66
'@nuxt/image',
7-
'@nuxt/ui-pro',
7+
'@nuxt/ui',
88
'@nuxt/content',
99
'@pinia/nuxt',
1010
'@vueuse/nuxt',
@@ -34,11 +34,7 @@ export default defineNuxtConfig({
3434
'/docs': { redirect: '/docs/user', prerender: false }
3535
},
3636

37-
future: {
38-
compatibilityVersion: 4
39-
},
40-
41-
compatibilityDate: '2025-06-14',
37+
compatibilityDate: '2025-07-15',
4238

4339
nitro: {
4440
prerender: {

package.json

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"build": "nuxt build",
7+
"builder": "nuxt build",
88
"dev": "nuxt dev",
99
"generate": "nuxt generate",
1010
"preview": "nuxt preview",
@@ -24,45 +24,49 @@
2424
"push-secrets": "bun run ./scripts/push-secrets.ts"
2525
},
2626
"dependencies": {
27-
"@iconify-json/lucide": "^1.2.49",
28-
"@iconify-json/simple-icons": "^1.2.38",
29-
"@nuxt/content": "^3.5.1",
30-
"@nuxt/image": "^1.10.0",
31-
"@nuxt/ui-pro": "^3.1.3",
27+
"@iconify-json/lucide": "^1.2.68",
28+
"@iconify-json/simple-icons": "^1.2.52",
29+
"@nuxt/content": "3.5.1",
30+
"@nuxt/image": "^1.11.0",
31+
"@nuxt/ui": "^4.0.0-alpha.1",
3232
"@nuxtjs/device": "^3.2.4",
33-
"@pinia/nuxt": "^0.11.1",
33+
"@pinia/nuxt": "^0.11.2",
3434
"@standard-schema/spec": "^1.0.0",
3535
"@videojs-player/vue": "^1.0.0",
36-
"@vueuse/nuxt": "^13.3.0",
37-
"better-sqlite3": "^11.10.0",
38-
"nuxt": "^3.17.5",
39-
"nuxt-og-image": "^5.1.6",
36+
"@vueuse/nuxt": "^13.9.0",
37+
"better-sqlite3": "^12.2.0",
38+
"nuxt": "^4.1.2",
39+
"nuxt-og-image": "^5.1.9",
4040
"pinia": "^3.0.3",
41-
"video.js": "^8.23.3",
42-
"zod": "^3.25.57"
41+
"video.js": "^8.23.4",
42+
"zod": "^4.1.8"
4343
},
4444
"devDependencies": {
4545
"@commitlint/cli": "^19.8.1",
4646
"@commitlint/config-conventional": "^19.8.1",
47-
"@nuxt/eslint": "^1.4.1",
47+
"@nuxt/eslint": "^1.9.0",
4848
"@semantic-release/git": "^10.0.1",
4949
"@types/bun": "^1.2.16",
5050
"@types/libsodium-wrappers": "^0.7.14",
5151
"basic-ftp": "^5.0.5",
52-
"eslint": "^9.28.0",
52+
"eslint": "^9.35.0",
5353
"libsodium-wrappers": "^0.7.15",
54-
"lint-staged": "^16.1.1",
54+
"lint-staged": "^16.1.6",
5555
"octokit": "^5.0.3",
56-
"semantic-release": "^24.2.5",
57-
"simple-git-hooks": "^2.13.0",
56+
"semantic-release": "^24.2.8",
57+
"simple-git-hooks": "^2.13.1",
5858
"typescript": "^5.8.3",
59-
"vue-tsc": "^2.2.10"
59+
"vue-tsc": "^3.0.7"
6060
},
6161
"trustedDependencies": [
62-
"better-sqlite3",
6362
"@parcel/watcher",
6463
"@tailwindcss/oxide",
65-
"unrs-resolver"
64+
"better-sqlite3",
65+
"esbuild",
66+
"sharp",
67+
"simple-git-hooks",
68+
"unrs-resolver",
69+
"vue-demi"
6670
],
6771
"commitlint": {
6872
"extends": [

0 commit comments

Comments
 (0)