Skip to content

Commit

Permalink
fix: npx workaround for PebbleHost
Browse files Browse the repository at this point in the history
  • Loading branch information
eartharoid committed Aug 24, 2023
1 parent b2790fc commit 4a2f85e
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions scripts/postinstall.js
Expand Up @@ -5,16 +5,26 @@ const util = require('util');
const exec = util.promisify(require('child_process').exec);
const { short } = require('leeks.js');

const fallback = { prisma: './node_modules/prisma/build/index.js' };

function log(...strings) {
console.log(short('&9[postinstall]&r'), ...strings);
}

async function npx(cmd) {
const parts = cmd.split(' ');
// fallback for environments with no symlink/npx support (PebbleHost)
if (!fs.existsSync(`./node_modules/.bin/${parts[0]}`)) {
const x = parts.shift();
cmd = 'node ' + fallback[x] + ' ' + parts.join(' ');
} else {
cmd = 'npx ' + cmd;
}
log(`> ${cmd}`);
const {
stderr,
stdout,
} = await exec('npx ' + cmd);
} = await exec(cmd);
if (stdout) console.log(stdout.toString());
if (stderr) console.log(stderr.toString());
}
Expand All @@ -32,11 +42,17 @@ if (!providers.includes(provider)) throw new Error(`DB_PROVIDER must be one of:
log(`provider=${provider}`);
log(`copying ${provider} schema & migrations`);

if (!fs.existsSync('./prisma')) fs.mkdirSync('./prisma');
if (fs.existsSync('./prisma')) {
fs.rmSync('./prisma', {
force: true,
recursive: true,
});
} else {
fs.mkdirSync('./prisma');
}
fs.copySync(`./db/${provider}`, './prisma'); // copy schema & migrations

(async () => {
await npx('prisma generate');
await npx('prisma migrate deploy');
})();

0 comments on commit 4a2f85e

Please sign in to comment.