mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-25 15:15:42 +00:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
|
|
const { execSync } = require('child_process');
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
execSync('npm run build', {
|
|
stdio: 'inherit',
|
|
});
|
|
|
|
/* execSync('npm run storybook:build', {
|
|
stdio: 'inherit',
|
|
}); */
|
|
}
|