Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/website-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,8 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@v1

- name: Fetch remote docs
run: cd website && pnpm fetch-remote-docs

- name: Fetch API reference
run: cd website && pnpm fetch-api-reference

- name: Fix pages structure
run: cd website && pnpm fix-pages-structure
- name: Run pre-build scripts
run: pnpm prebuild:ci

- name: Build
run: pnpm build
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ WORKDIR /app
COPY . ./

RUN pnpm install --frozen-lockfile
RUN cd website && pnpm fetch-remote-docs
RUN cd website && pnpm fetch-api-reference
RUN cd website && pnpm fix-pages-structure
RUN pnpm prebuild:ci
RUN pnpm build

FROM nginx:1.16.0-alpine
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"name": "graph-docs",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@10.7.0",
"packageManager": "pnpm@10.8.0",
"scripts": {
"dev": "turbo run dev",
"build": "NODE_OPTIONS='--max_old_space_size=8192' turbo run build",
"prebuild:ci": "turbo run prebuild:ci",
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
"check:fix": "pnpm lint:fix; pnpm prettier",
"lint": "eslint . --ignore-path .gitignore --max-warnings 0",
Expand All @@ -20,18 +21,18 @@
},
"devDependencies": {
"@edgeandnode/eslint-config": "^2.0.3",
"@types/node": "^22.13.17",
"@types/node": "^22.14.0",
"eslint": "^8.57.1",
"eslint-plugin-mdx": "^3.3.1",
"eslint-plugin-mdx": "^3.4.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"remark-frontmatter": "^5.0.0",
"remark-lint-first-heading-level": "^4.0.1",
"remark-lint-heading-increment": "^4.0.1",
"remark-lint-no-heading-punctuation": "^4.0.1",
"remark-lint-restrict-elements": "workspace:*",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
"turbo": "^2.5.0",
"typescript": "^5.8.3"
},
"resolutions": {
"@babel/core": "7.26.7"
Expand Down
6 changes: 3 additions & 3 deletions packages/og-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250327.0",
"@cloudflare/workers-types": "^4.20250407.0",
"@types/react": "^18.3.20",
"jest-image-snapshot": "^6.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript": "^5.8.3",
"vitest": "^2.1.9",
"wrangler": "^3.114.3"
"wrangler": "^3.114.4"
},
"sideEffects": false
}
Loading