habitica/website/client/scripts/npm-postinstall.js

14 lines
263 B
JavaScript
Raw Normal View History

/* eslint-disable import/no-commonjs */
2019-10-24 12:06:20 +00:00
const { execSync } = require('child_process');
if (process.env.NODE_ENV === 'production') {
execSync('npm run build', {
stdio: 'inherit',
});
execSync('npm run storybook:build', {
stdio: 'inherit',
});
2019-10-24 12:06:20 +00:00
}