Switch from npm to yarn and enable experimental Docusaurus optimizations

This commit is contained in:
Lyssa
2026-01-09 16:29:43 +04:00
parent 82ff792c94
commit fd538b739e
6 changed files with 9762 additions and 18698 deletions

View File

@@ -16,12 +16,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache: yarn
- name: Install dependencies
run: npm ci
run: yarn install --frozen-lockfile
- name: Build website
run: npm run build
run: yarn build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3

3
.gitignore vendored
View File

@@ -18,3 +18,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# npm
package-lock.json

View File

@@ -1,9 +1,3 @@
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
import { themes as prismThemes } from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
@@ -11,24 +5,20 @@ const config = {
title: 'MAS',
tagline: 'Open-source Windows and Office activator featuring HWID, Ohook, TSforge, and Online KMS activation methods, along with advanced troubleshooting.',
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://massgrave.dev/',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'massgravel', // Usually your GitHub org/user name.
projectName: 'massgrave.dev', // Usually your repo name.
baseUrlIssueBanner: true,
url: 'https://massgrave.dev',
organizationName: 'massgravel',
projectName: 'massgrave.dev',
onBrokenLinks: 'throw',
trailingSlash: false,
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
future: {
v4: true,
experimental_faster: true
},
i18n: {
defaultLocale: 'en',
locales: ['en'],
@@ -40,7 +30,7 @@ const config = {
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
routeBasePath: '/', // Serve the docs at the site's root
routeBasePath: '/',
sidebarPath: './sidebars.js',
},
blog: {
@@ -49,7 +39,6 @@ const config = {
type: ['rss', 'atom'],
xslt: true,
},
// Useful options to enforce blogging best practices
onInlineTags: 'warn',
onInlineAuthors: 'warn',
onUntruncatedBlogPosts: 'warn',
@@ -106,7 +95,6 @@ const config = {
disableSwitch: false,
respectPrefersColorScheme: true,
},
// Replace with your project's social card
image: 'img/card.png',
navbar: {
title: 'MAS',

18666
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,7 @@
{
"name": "mas-docs",
"version": "0.0.0",
"license": "CC-BY-4.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
@@ -14,9 +15,10 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "3.9.2",
"@docusaurus/core": "^3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/plugin-client-redirects": "^3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
@@ -25,8 +27,8 @@
"react-player": "^3.4.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/types": "3.9.2"
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/types": "^3.9.2"
},
"browserslist": {
"production": [
@@ -35,9 +37,9 @@
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {

9737
yarn.lock Normal file

File diff suppressed because it is too large Load Diff