mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
* Added configs to select plugins * moving the configs to * removing private from common * fix * removed if-env * Fix * docker compose changes * review comments * remove plugin build file * revert docker file changes * netlify changes * netlify configs * build script changes * build script changes * dockerfile changes * add prebuild script
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
const { execSync } = require('child_process');
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
execSync('npx lerna run clean --parallel');
|
|
} else {
|
|
execSync('npx lerna run clean --parallel --no-private');
|
|
}
|