Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV ENVIRONMENT=$ENVIRONMENT
ENV ORIGIN=$ORIGIN

ENV PNPM_HOME="/usr/bin"
ENV NODE_OPTIONS="--max_old_space_size=8192"
ENV NODE_OPTIONS="--max-old-space-size=8192"

RUN apk add --no-cache git
RUN npm install -g corepack@latest
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "graph-docs",
"private": true,
"version": "1.0.0",
"packageManager": "[email protected].1",
"packageManager": "[email protected].3",
"scripts": {
"dev": "turbo run dev",
"build": "NODE_OPTIONS='--max_old_space_size=8192' turbo run build",
"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",
Expand All @@ -21,11 +21,11 @@
},
"devDependencies": {
"@edgeandnode/eslint-config": "^2.0.3",
"@types/node": "^22.15.31",
"@types/node": "^22.15.33",
"eslint": "^8.57.1",
"eslint-plugin-mdx": "^3.4.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"eslint-plugin-mdx": "^3.5.0",
"prettier": "^3.6.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"remark-frontmatter": "^5.0.0",
"remark-lint-first-heading-level": "^4.0.1",
"remark-lint-heading-increment": "^4.0.1",
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.20250610.0",
"@cloudflare/workers-types": "^4.20250620.0",
"@types/react": "^18.3.23",
"jest-image-snapshot": "^6.5.1",
"tsx": "^4.19.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^2.1.9",
"wrangler": "^3.114.9"
"wrangler": "^3.114.10"
},
"sideEffects": false
}
4 changes: 2 additions & 2 deletions packages/og-image/scripts/copy-wasm.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { readFile, writeFile } from 'node:fs/promises'
import { createRequire } from 'node:module'
import { join } from 'node:path'
import path from 'node:path'

const require = createRequire(import.meta.url)
const __dirname = new URL('.', import.meta.url).pathname

await writeFile(
join(__dirname, '../vendor/index_bg.wasm'),
path.join(__dirname, '../vendor/index_bg.wasm'),
await readFile(require.resolve('@resvg/resvg-wasm/index_bg.wasm')),
)

Expand Down
15 changes: 0 additions & 15 deletions packages/rehype-unwrap-images/package.json

This file was deleted.

12 changes: 0 additions & 12 deletions packages/remark-callouts/package.json

This file was deleted.

Loading