Skip to content

Commit

Permalink
Merge pull request #758 from KBVE/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
h0lybyte authored Aug 11, 2023
2 parents b474b4f + f363dd0 commit 21e0e21
Show file tree
Hide file tree
Showing 42 changed files with 2,484 additions and 457 deletions.
94 changes: 91 additions & 3 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ declare module 'astro:content' {

declare module 'astro:content' {
export { z } from 'astro/zod';
export type CollectionEntry<C extends keyof AnyEntryMap> = AnyEntryMap[C][keyof AnyEntryMap[C]];

type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
export type CollectionEntry<C extends keyof AnyEntryMap> = Flatten<AnyEntryMap[C]>;

// TODO: Remove this when having this fallback is no longer relevant. 2.3? 3.0? - erika, 2023-04-04
/**
Expand Down Expand Up @@ -348,6 +350,13 @@ declare module 'astro:content' {
collection: "application";
data: InferEntrySchema<"application">
} & { render(): Render[".mdx"] };
"n8n/n8n.mdx": {
id: "n8n/n8n.mdx";
slug: "n8n";
body: string;
collection: "application";
data: InferEntrySchema<"application">
} & { render(): Render[".mdx"] };
"nftables.mdx": {
id: "nftables.mdx";
slug: "nftables";
Expand Down Expand Up @@ -376,8 +385,8 @@ declare module 'astro:content' {
collection: "application";
data: InferEntrySchema<"application">
} & { render(): Render[".mdx"] };
"obs.mdx": {
id: "obs.mdx";
"obs/obs.mdx": {
id: "obs/obs.mdx";
slug: "obs";
body: string;
collection: "application";
Expand Down Expand Up @@ -460,6 +469,13 @@ declare module 'astro:content' {
collection: "application";
data: InferEntrySchema<"application">
} & { render(): Render[".mdx"] };
"supabase/supabase.mdx": {
id: "supabase/supabase.mdx";
slug: "supabase";
body: string;
collection: "application";
data: InferEntrySchema<"application">
} & { render(): Render[".mdx"] };
"terraform.mdx": {
id: "terraform.mdx";
slug: "terraform";
Expand Down Expand Up @@ -1333,6 +1349,62 @@ declare module 'astro:content' {
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-03.md": {
id: "08-03.md";
slug: "08-03";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-04.md": {
id: "08-04.md";
slug: "08-04";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-05.md": {
id: "08-05.md";
slug: "08-05";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-06.md": {
id: "08-06.md";
slug: "08-06";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-07.md": {
id: "08-07.md";
slug: "08-07";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-08.md": {
id: "08-08.md";
slug: "08-08";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-09.md": {
id: "08-09.md";
slug: "08-09";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"08-10.md": {
id: "08-10.md";
slug: "08-10";
body: string;
collection: "journal";
data: InferEntrySchema<"journal">
} & { render(): Render[".md"] };
"asset.mdx": {
id: "asset.mdx";
slug: "asset";
Expand Down Expand Up @@ -1785,6 +1857,22 @@ declare module 'astro:content' {
data: InferEntrySchema<"stock">
} & { render(): Render[".mdx"] };
};
"tags": {
"auth/auth-notes.md": {
id: "auth/auth-notes.md";
slug: "auth/auth-notes";
body: string;
collection: "tags";
data: InferEntrySchema<"tags">
} & { render(): Render[".md"] };
"auth/auth.mdx": {
id: "auth/auth.mdx";
slug: "auth";
body: string;
collection: "tags";
data: InferEntrySchema<"tags">
} & { render(): Render[".mdx"] };
};
"team": {
"example.mdx": {
id: "example.mdx";
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,4 @@ dist
src/content/.obsidian/workspace.json
.astro/types.d.ts
.astro/types.d.ts
.astro/types.d.ts
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"jobby",
"kbve",
"kbveapp",
"khash",
"kubernetescrd",
"Lexica",
"listsnapshot",
Expand Down Expand Up @@ -110,6 +111,7 @@
"STOPSIGNAL",
"Strapi",
"subdir",
"Supabase",
"swup",
"syncthing",
"tailwindcss",
Expand All @@ -124,6 +126,7 @@
"UCCIS",
"unicorned",
"unitypackage",
"Userdata",
"vidstack",
"vmbr",
"Vuplex",
Expand Down
36 changes: 21 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,30 @@
"kbve": "yarn-upgrade-all && astro sync && astro build && astro dev --host"
},
"devDependencies": {
"@types/eslint": "^8.44.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@types/eslint": "^8.44.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"astro-eslint-parser": "^0.14.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-astro": "^0.28.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"sass": "^1.64.2",
"sass": "^1.65.1",
"svgo": "2.8.0",
"yarn-upgrade-all": "^0.7.2"
},
"dependencies": {
"@astrojs/alpinejs": "^0.2.2",
"@astrojs/image": "^0.17.2",
"@astrojs/image": "^0.17.3",
"@astrojs/markdown-remark": "^2.2.1",
"@astrojs/mdx": "^0.19.7",
"@astrojs/partytown": "^1.2.3",
"@astrojs/preact": "^2.2.1",
"@astrojs/preact": "^2.2.2",
"@astrojs/prefetch": "^0.3.0",
"@astrojs/react": "^2.2.1",
"@astrojs/sitemap": "^2.0.1",
Expand All @@ -50,18 +50,22 @@
"@lottiefiles/react-lottie-player": "^3.5.3",
"@mdi/js": "^7.2.96",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@mui/material": "^5.14.4",
"@nanostores/persistent": "^0.9.1",
"@nanostores/react": "^0.7.1",
"@react-three/fiber": "^8.13.6",
"@supabase/supabase-js": "^2.32.0",
"@sveltejs/kit": "^1.22.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@types/lodash": "^4.14.196",
"@types/lodash": "^4.14.197",
"@types/react-router-dom": "^5.3.3",
"alpinejs": "^3.12.3",
"appwrite": "^11.0.0",
"astro": "^2.9.7",
"astro-compress": "^1.1.50",
"astro": "^2.10.5",
"astro-compress": "^2.0.5",
"crypto-js": "^4.1.1",
"dompurify": "^3.0.5",
"flowbite": "^1.8.1",
Expand All @@ -71,14 +75,15 @@
"lodash": "^4.17.21",
"mermaid": "^10.3.0",
"micromodal": "^0.4.10",
"million": "^2.5.4-beta.2",
"million": "^2.5.10",
"nanostores": "^0.9.3",
"openpgp": "^5.9.0",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-hook-form": "^7.45.4",
"react-icons": "^4.10.1",
"react-router-dom": "^6.14.2",
"react-router-dom": "^6.15.0",
"react-unity-webgl": "^9.4.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.1.0",
Expand All @@ -90,6 +95,7 @@
"svelte": "^4.1.2",
"tailwindcss": "^3.3.3",
"tailwindcss-fluid-type": "^2.0.3",
"three": "^0.155.0",
"ts-dedent": "^2.2.0",
"typewriter-effect": "^2.20.1",
"unist-util-visit": "^5.0.0",
Expand Down
Binary file added public/assets/audio/mr_new_vegas_oh_boy.mp3
Binary file not shown.
Loading

0 comments on commit 21e0e21

Please sign in to comment.