Skip to content

Commit a003925

Browse files
committed
revert 3.9, add docker run
1 parent 209ece1 commit a003925

File tree

3 files changed

+59
-71
lines changed

3 files changed

+59
-71
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Rebuild yarn.lock on Linux
2+
3+
on:
4+
workflow_dispatch: {} # run it manually from the Actions tab
5+
6+
permissions:
7+
contents: write # needed to push a branch/PR
8+
9+
jobs:
10+
rebuild:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Use Node 20
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
23+
- name: Install Yarn 1.x
24+
run: npm i -g [email protected]
25+
26+
- name: Clean lock & modules
27+
run: rm -rf node_modules yarn.lock
28+
29+
- name: Install (generate Linux lockfile)
30+
run: yarn install
31+
32+
- name: Create PR
33+
uses: peter-evans/create-pull-request@v6
34+
with:
35+
branch: fix/linux-lockfile
36+
commit-message: "chore: regenerate yarn.lock on Linux for CI compatibility"
37+
title: "chore: regenerate yarn.lock on Linux"
38+
body: |
39+
Regenerated lockfile on Linux to avoid platform-specific @swc/* entries.
40+
CI can keep using `yarn install --frozen-lockfile`.
41+
delete-branch: true

docusaurus.config.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ module.exports = {
2121
baseUrl: process.env.BASE_URL || "/",
2222
onBrokenLinks: 'throw',
2323
onBrokenAnchors: 'throw',
24-
onDuplicateRoutes: 'throw',
25-
markdown: {
26-
hooks: {
27-
onBrokenMarkdownLinks: 'throw',
28-
},
29-
},
3024
favicon: 'https://www.sumologic.com/favicon.ico',
3125
organizationName: 'sumologic', // Usually your GitHub org/user name.
3226
projectName: 'sumologic-documentation', // Usually your repo name.

package.json

Lines changed: 18 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
"write-heading-ids": "docusaurus write-heading-ids"
1616
},
1717
"dependencies": {
18-
"@ai-sdk/gateway": "1.0.30",
19-
"@ai-sdk/react": "2.0.56",
20-
"@algolia/abtesting": "1.5.0",
2118
"@algolia/autocomplete-core": "1.17.9",
2219
"@algolia/autocomplete-plugin-algolia-insights": "1.17.9",
2320
"@algolia/autocomplete-preset-algolia": "1.17.9",
@@ -35,68 +32,45 @@
3532
"@braintree/sanitize-url": "^6.0.1",
3633
"@csstools/selector-resolve-nested": "3.1.0",
3734
"@docsearch/css": "3.8.2",
38-
"@docusaurus/bundler": "3.9.1",
39-
"@docusaurus/core": "^3.9.1",
40-
"@docusaurus/cssnano-preset": "3.9.1",
41-
"@docusaurus/faster": "3.9.1",
42-
"@docusaurus/plugin-client-redirects": "3.9.1",
43-
"@docusaurus/plugin-content-blog": "^3.9.1",
44-
"@docusaurus/plugin-css-cascade-layers": "3.9.1",
45-
"@docusaurus/plugin-debug": "3.9.1",
46-
"@docusaurus/plugin-google-analytics": "3.9.1",
47-
"@docusaurus/plugin-google-gtag": "3.9.1",
48-
"@docusaurus/plugin-google-tag-manager": "3.9.1",
49-
"@docusaurus/plugin-sitemap": "3.9.1",
50-
"@docusaurus/plugin-svgr": "3.9.1",
51-
"@docusaurus/preset-classic": "3.9.1",
52-
"@docusaurus/theme-classic": "3.9.1",
53-
"@docusaurus/theme-search-algolia": "3.9.1",
35+
"@docusaurus/bundler": "3.8.1",
36+
"@docusaurus/core": "^3.8.1",
37+
"@docusaurus/cssnano-preset": "3.8.1",
38+
"@docusaurus/faster": "3.8.1",
39+
"@docusaurus/plugin-client-redirects": "3.8.1",
40+
"@docusaurus/plugin-content-blog": "^3.8.1",
41+
"@docusaurus/plugin-css-cascade-layers": "3.8.1",
42+
"@docusaurus/plugin-debug": "3.8.1",
43+
"@docusaurus/plugin-google-analytics": "3.8.1",
44+
"@docusaurus/plugin-google-gtag": "3.8.1",
45+
"@docusaurus/plugin-google-tag-manager": "3.8.1",
46+
"@docusaurus/plugin-sitemap": "3.8.1",
47+
"@docusaurus/plugin-svgr": "3.8.1",
48+
"@docusaurus/preset-classic": "3.8.1",
49+
"@docusaurus/theme-classic": "3.8.1",
50+
"@docusaurus/theme-search-algolia": "3.8.1",
5451
"@emotion/react": "^11.10.5",
5552
"@emotion/styled": "^11.10.5",
5653
"@eslint/eslintrc": "^1.3.3",
5754
"@fortawesome/fontawesome-svg-core": "^1.2.36",
5855
"@fortawesome/free-brands-svg-icons": "^6.6.0",
5956
"@fortawesome/free-solid-svg-icons": "^5.15.4",
6057
"@fortawesome/react-fontawesome": "^0.2.2",
61-
"@jsonjoy.com/base64": "1.1.2",
62-
"@jsonjoy.com/json-pack": "1.14.0",
63-
"@jsonjoy.com/json-pointer": "1.0.2",
6458
"@mdx-js/node-loader": "^3.0.0",
6559
"@mdx-js/react": "^3.0.0",
66-
"@module-federation/runtime-core": "0.18.0",
67-
"@module-federation/runtime-tools": "0.18.0",
68-
"@module-federation/webpack-bundler-runtime": "0.18.0",
6960
"@mui/lab": "^5.0.0-alpha.108",
7061
"@mui/material": "^5.16.7",
7162
"@mui/system": "^5.16.7",
72-
"@opentelemetry/api": "1.9.0",
7363
"@popperjs/core": "^2.11.6",
74-
"@rspack/binding": "1.5.7",
75-
"@rspack/binding-darwin-arm64": "1.5.7",
76-
"@rspack/core": "1.5.7",
7764
"@saucelabs/theme-github-codeblock": "^0.3.0",
78-
"@standard-schema/spec": "1.0.0",
7965
"@svgr/core": "8.1.0",
8066
"@svgr/hast-util-to-babel-ast": "8.0.0",
8167
"@svgr/plugin-jsx": "8.1.0",
8268
"@svgr/plugin-svgo": "8.1.0",
8369
"@svgr/webpack": "8.1.0",
8470
"@swc/core": "^1.10.9",
85-
"@swc/html": "1.13.20",
86-
"@swc/html-darwin-arm64": "1.13.20",
87-
"@types/bonjour": "3.5.13",
88-
"@types/connect-history-api-fallback": "1.5.4",
8971
"@types/eslint": "9.6.1",
9072
"@types/eslint-scope": "3.7.7",
91-
"@types/express": "4.17.23",
92-
"@types/retry": "0.12.2",
93-
"@types/serve-index": "1.9.4",
94-
"@types/sockjs": "0.3.36",
95-
"@types/ws": "8.18.1",
96-
"ai": "5.0.56",
9773
"ansi-escapes": "4.3.2",
98-
"bonjour-service": "1.3.0",
99-
"bundle-name": "4.1.0",
10074
"cacheable-request": "^10.2.7",
10175
"cheerio": "1.0.0-rc.12",
10276
"clsx": "^1.1.1",
@@ -107,42 +81,29 @@
10781
"cssdb": "8.2.1",
10882
"cssnano": "6.1.2",
10983
"csso": "5.0.5",
110-
"default-browser": "5.2.1",
111-
"default-browser-id": "5.0.0",
11284
"docusaurus-plugin-sass": "^0.2.1",
11385
"docusaurus2-dotenv": "^1.4.0",
11486
"electron-to-chromium": "1.4.755",
115-
"eventsource-parser": "3.0.6",
116-
"express": "4.21.2",
11787
"figures": "3.2.0",
11888
"file-loader": "^6.2.0",
11989
"follow-redirects": "^1.15.6",
12090
"glob-parent": "^5.1.2",
121-
"glob-to-regex.js": "1.0.1",
12291
"got": "^12.5.2",
123-
"http-proxy-middleware": "2.0.9",
124-
"hyperdyperid": "1.2.0",
12592
"image-size": "2.0.2",
12693
"infima": "0.2.0-alpha.42",
127-
"ipaddr.js": "2.2.0",
128-
"is-network-error": "1.3.0",
12994
"jsesc": "3.0.2",
130-
"json-schema": "0.4.0",
13195
"json5": "^2.2.3",
132-
"launch-editor": "2.11.1",
13396
"loader-utils": "^3.2.1",
13497
"markdown-table": "2.0.0",
13598
"mdn-data": "2.0.30",
13699
"mdx-mermaid": "^2.0.1",
137-
"memfs": "4.47.0",
138100
"mermaid": "^11.10.0",
139101
"minimist": "^1.2.6",
140102
"nanoid": "^3.3.8",
141103
"node-fetch": "^2.6.7",
142104
"node-forge": "^1.3.0",
143105
"nth-check": "^2.0.1",
144106
"p-queue": "6.6.2",
145-
"p-retry": "6.2.1",
146107
"p-timeout": "3.2.0",
147108
"path-to-regexp": "3.3.0",
148109
"postcss": "^8.4.38",
@@ -188,13 +149,10 @@
188149
"remark-emoji": "^4.0.1",
189150
"remark-import-partial": "^0.0.2",
190151
"repeat-string": "1.6.1",
191-
"run-applescript": "7.1.0",
192152
"sass": "^1.44.0",
193153
"sass-loader": "^12.4.0",
194154
"search-insights": "^2.17.3",
195-
"selfsigned": "2.4.1",
196155
"serve-handler": "6.1.6",
197-
"shell-quote": "1.8.3",
198156
"shelljs": "^0.9.0",
199157
"snake-case": "3.0.4",
200158
"sort-css-media-queries": "2.2.0",
@@ -204,23 +162,18 @@
204162
"svgo": "3.2.0",
205163
"swc": "^1.0.11",
206164
"swc-loader": "^0.2.3",
207-
"swr": "2.3.6",
208-
"throttleit": "2.1.0",
209165
"tinypool": "1.0.2",
210-
"tree-dump": "1.1.0",
211166
"trim": "^0.0.3",
212167
"url-loader": "^4.1.1",
213168
"use-sync-external-store": "1.2.0",
214169
"webpack": "^5.94.0",
215170
"webpack-bundle-analyzer": "4.10.2",
216171
"webpack-merge": "6.0.1",
217172
"wildcard": "2.0.1",
218-
"wsl-utils": "0.1.0",
219-
"yaml": "^2.3.1",
220-
"zod": "4.1.11"
173+
"yaml": "^2.3.1"
221174
},
222175
"devDependencies": {
223-
"@docusaurus/module-type-aliases": "^3.9.1",
176+
"@docusaurus/module-type-aliases": "^3.8.1",
224177
"@tsconfig/docusaurus": "^1.0.4",
225178
"@types/react": "^17.0.0",
226179
"@types/webpack-env": "^1.16.3",

0 commit comments

Comments
 (0)