mirror of https://github.com/nocodb/nocodb
Wing-Kam Wong
1 year ago
2 changed files with 44 additions and 1 deletions
@ -0,0 +1,42 @@ |
|||||||
|
const { exec } = require('child_process'); |
||||||
|
const path = require('path'); |
||||||
|
const sdkPath = path.join(__dirname, '..', 'packages', 'nocodb-sdk'); |
||||||
|
const guiPath = path.join(__dirname, '..', 'packages', 'nc-gui'); |
||||||
|
const nocodbPath = path.join(__dirname, '..', 'packages', 'nocodb'); |
||||||
|
|
||||||
|
exec(`cd ${sdkPath} && npm i && npm run build`, (err, stdout, stderr) => { |
||||||
|
if (err) { |
||||||
|
console.error(`Error installing dependencies and building nocodb-sdk: ${err}`); |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
console.log(`Dependencies installed and nocodb-sdk built: ${stdout}`); |
||||||
|
|
||||||
|
const guiPromise = new Promise((resolve, reject) => { |
||||||
|
exec(`cd ${guiPath} && npm i ${sdkPath}`, (err, stdout, stderr) => { |
||||||
|
if (err) { |
||||||
|
reject(`Error installing dependencies for nc-gui: ${err}`); |
||||||
|
} else { |
||||||
|
resolve(`Dependencies installed for nc-gui: ${stdout}`); |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
const nocodbPromise = new Promise((resolve, reject) => { |
||||||
|
exec(`cd ${nocodbPath} && npm i ${sdkPath}`, (err, stdout, stderr) => { |
||||||
|
if (err) { |
||||||
|
reject(`Error installing dependencies for nocodb: ${err}`); |
||||||
|
} else { |
||||||
|
resolve(`Dependencies installed for nocodb: ${stdout}`); |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
|
||||||
|
Promise.all([guiPromise, nocodbPromise]) |
||||||
|
.then((results) => { |
||||||
|
console.log(results.join('\n')); |
||||||
|
}) |
||||||
|
.catch((err) => { |
||||||
|
console.error(err); |
||||||
|
}); |
||||||
|
}); |
Loading…
Reference in new issue