UNPKG

337 BJavaScriptView Raw
1const { download } = require('@prisma/fetch-engine')
2
3// Until https://github.com/zeit/ncc/issues/390 is resolved we have to do this 🙈
4const runtimePath = eval(`require('path').join(__dirname, '../')`)
5
6download({
7 binaries: {
8 'query-engine': runtimePath,
9 },
10 showProgress: true,
11 printVersion: true,
12 ignoreCache: true,
13})