Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikvtcodes committed Jun 6, 2024
1 parent f7fe7a1 commit 6aaf852
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 43 deletions.
Binary file modified bun.lockb
Binary file not shown.
76 changes: 39 additions & 37 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,73 +1,75 @@
import { themes } from 'prism-react-renderer';
import { themes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
const config = {
title: "VERSO Open Resource Library",
tagline: "Learn, explore, and create open source practices.",
favicon:
"https://verso.w3.uvm.edu/wp-content/uploads/2023/08/cropped-Logo_verso2-1-1-192x192.png",

export default {
title: 'VERSO Open Resource Library',
tagline: 'Learn, explore, and create open source practices.',
favicon: 'https://verso.w3.uvm.edu/wp-content/uploads/2023/08/cropped-Logo_verso2-1-1-192x192.png',

url: 'https://openresourcelibrary.com', // TODO: Domain?
baseUrl: '/',
url: "https://openresourcelibrary.com", // TODO: Domain?
baseUrl: "/",

// GitHub pages deployment config.
organizationName: 'VERSO-UVM',
projectName: 'Open-Resource-Library',
organizationName: "VERSO-UVM",
projectName: "Open-Resource-Library",

onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",

// Required for language metadata, not actually internationalized
i18n: {
defaultLocale: 'en',
locales: ['en']
defaultLocale: "en",
locales: ["en"],
},

presets: [
[
'classic',
"classic",
{
docs: {
sidebarPath: './sidebars.ts',
routeBasePath: '/',
editUrl:
'https://github.com/VERSO-UVM/Open-Resource-Library',
sidebarPath: "./sidebars.ts",
routeBasePath: "/",
editUrl: "https://github.com/VERSO-UVM/Open-Resource-Library",
},
blog: false,
pages: false,
theme: {
customCss: './src/css/custom.css',
customCss: "./src/css/custom.css",
},
}
},
],
],

themeConfig: {
colorMode: {
respectPrefersColorScheme: true
respectPrefersColorScheme: true,
},

navbar: {
title: 'Open Resource Library',
title: "Open Resource Library",
logo: {
alt: 'VERSO Logo',
src: 'https://verso.w3.uvm.edu/wp-content/uploads/2023/08/cropped-Logo_verso2-1-1-192x192.png'
alt: "VERSO Logo",
src: "https://verso.w3.uvm.edu/wp-content/uploads/2023/08/cropped-Logo_verso2-1-1-192x192.png",
},
items: [
{
href: 'https://verso.w3.uvm.edu',
label: 'VERSO Website',
position: 'right',
href: "https://verso.w3.uvm.edu",
label: "VERSO Website",
position: "right",
},
{
href: 'https://github.com/VERSO-UVM/Open-Resource-Library',
label: 'GitHub',
position: 'right',
}
]
href: "https://github.com/VERSO-UVM/Open-Resource-Library",
label: "GitHub",
position: "right",
},
],
},

prism: {
theme: themes.github,
darkTheme: themes.dracula
}
}
};
darkTheme: themes.dracula,
},
},
} satisfies Config;

export default config;
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
"@docusaurus/core": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
Expand All @@ -25,9 +25,9 @@
"react-loadable": "npm:@docusaurus/react-loadable@5.5.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.1.1",
"@docusaurus/tsconfig": "3.1.1",
"@docusaurus/types": "3.1.1",
"@docusaurus/module-type-aliases": "^3.4.0",
"@docusaurus/tsconfig": "^3.4.0",
"@docusaurus/types": "^3.4.0",
"typescript": "~5.2.2"
}
}
}

0 comments on commit 6aaf852

Please sign in to comment.