-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tmp: patch lmdb so we can bundle it for engines
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
packages/gatsby/src/schema/graphql-engine/lmdb-bundling-patch.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
export default function (source: string): string { | ||
let lmdbBinaryLocation | ||
try { | ||
const nodeGypBuild = require(`node-gyp-build`) | ||
const path = require(`path`) | ||
|
||
lmdbBinaryLocation = nodeGypBuild.path( | ||
path.dirname(require.resolve(`lmdb`)).replace(`/dist`, ``) | ||
) | ||
} catch (e) { | ||
console.error(`ln`, e) | ||
return source | ||
} | ||
|
||
return source | ||
.replace( | ||
`require$1('node-gyp-build')(dirName)`, | ||
`require(${JSON.stringify(lmdbBinaryLocation)})` | ||
) | ||
.replace( | ||
`require$2.resolve('./dict/dict.txt')`, | ||
`require.resolve('../dict/dict.txt')` | ||
) | ||
.replace( | ||
/fs\.readFileSync\(new URL\('\.\/dict\/dict\.txt',\s*\(typeof\s*document\s*===\s*'undefined'\s*\?\s*new\s*\(require\('u'\s*\+\s*'rl'\)\.URL\)\s*\('file:'\s*\+\s*__filename\).href\s*:\s*\(document\.currentScript\s*&&\s*document\.currentScript\.src\s*\|\|\s*new URL\('index\.cjs',\s*document\.baseURI\)\.href\)\)\.replace\(\/dist\[\\\\\\\/\]index\.cjs\$\/,\s*''\)\)\)/g, | ||
`fs.readFileSync(require.resolve('../dict/dict.txt'))` | ||
) | ||
} |