Skip to content

Commit

Permalink
revert commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JenkJS committed Jul 29, 2024
1 parent 95c65b9 commit b3b17a2
Show file tree
Hide file tree
Showing 5 changed files with 15,306 additions and 11,553 deletions.
2 changes: 1 addition & 1 deletion components/custom-content-renderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</template>

<script lang="ts" setup>
import type { ParsedContent } from "@nuxt/content";
import type { ParsedContent } from "@nuxt/content/dist/runtime/types/index";
const props = defineProps<{
value: ParsedContent;
Expand Down
4 changes: 2 additions & 2 deletions components/docs/item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
import type {
ParsedContent,
QueryBuilder,
} from "@nuxt/content";
} from "@nuxt/content/dist/runtime/types/index";
const { t } = useI18n();
const localePath = useLocalePath();
Expand Down Expand Up @@ -143,7 +143,7 @@ scrollSpy({
});
const filteredList = computed(() => {
return everything.value.filter((article: any) => {
return everything.value.filter((article) => {
if (!article._path) {
return false;
}
Expand Down
8 changes: 4 additions & 4 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { join, sep } from "path";
import { globSync } from "glob";
import { pathExists, copy } from "fs-extra";
import type { LocaleObject, Directions } from "./node_modules/@nuxtjs/i18n";
import type { LocaleObject, Directions } from "vue-i18n-routing";

// List of supported languages
const locales: LocaleObject[] = [
Expand Down Expand Up @@ -206,12 +206,12 @@ export default defineNuxtConfig({
},
fontMetrics: {
fonts: [
{ family: "ProximaNova", src: "fonts/ProximaNova-Regular.woff2" },
{ family: "ProximaNova", src: "/fonts/ProximaNova-Regular.woff2" },
{
family: "ProximaNova-Italic",
src: "fonts/ProximaNova-RegularIt.woff2",
src: "/fonts/ProximaNova-RegularIt.woff2",
},
{ family: "ProximaNova-Bold", src: "fonts/ProximaNova-Bold.woff2" },
{ family: "ProximaNova-Bold", src: "/fonts/ProximaNova-Bold.woff2" },
],
},
i18n: {
Expand Down
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beam-web",
"packageManager": "yarn@1.22.22",
"packageManager": "yarn@3.5.0",
"type": "module",
"scripts": {
"dev": "nuxi dev",
Expand All @@ -16,45 +16,45 @@
"apply-updates": "npx npm-check-updates -u && yarn install"
},
"devDependencies": {
"@nuxt/content": "^2.13.2",
"@nuxt/content": "^2.10.0",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/fontaine": "^0.4.3",
"@nuxtjs/i18n": "^8.3.3",
"@nuxtjs/tailwindcss": "^6.12.1",
"@nuxtjs/fontaine": "^0.4.1",
"@nuxtjs/i18n": "^8.0.0",
"@nuxtjs/tailwindcss": "^6.10.4",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.8.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.2.1",
"nuxt": "^3.12.4",
"nuxt-seo-experiments": "^4.0.0",
"eslint-plugin-prettier": "^5.1.3",
"nuxt": "^3.9.1",
"nuxt-seo-experiments": "^3.1.9",
"nuxt-simple-robots": "^3.1.10",
"nuxt-simple-sitemap": "^4.4.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vue-tsc": "^2.0.29"
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"@nuxt/types": "^2.18.1",
"@nuxt/types": "^2.17.3",
"@popperjs/core": "^2.11.8",
"@tailwindcss/typography": "^0.5.13",
"@tailwindcss/typography": "^0.5.10",
"@types/canvas-confetti": "^1.6.4",
"@types/markdown-it": "^14.1.2",
"@types/uuid": "^10.0.0",
"canvas-confetti": "^1.9.3",
"date-fns": "^3.6.0",
"@types/markdown-it": "^13.0.7",
"@types/uuid": "^9.0.7",
"canvas-confetti": "^1.9.2",
"date-fns": "^3.3.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"gsap": "^3.12.5",
"markdown-it": "^14.1.0",
"npm-check-updates": "^16.14.20",
"nuxt-multi-cache": "^3.3.1",
"nuxt-security": "^1.4.3",
"swiper": "^11.1.8",
"tailwindcss": "^3.4.7",
"vue3-marquee": "^4.2.0"
"glob": "^10.3.10",
"gsap": "^3.12.4",
"markdown-it": "^14.0.0",
"npm-check-updates": "^16.14.12",
"nuxt-multi-cache": "^3.1.1",
"nuxt-security": "^1.0.0",
"swiper": "^11.0.5",
"tailwindcss": "^3.4.1",
"vue3-marquee": "^4.1.0"
}
}
Loading

0 comments on commit b3b17a2

Please sign in to comment.