mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
|
|
const { execSync } = require('child_process');
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
execSync('npm run build', {
|
|
stdio: 'inherit',
|
|
});
|
|
}
|