mirror of
				https://github.com/HabitRPG/habitica.git
				synced 2025-10-31 05:05:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			269 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 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',
 | |
|   }); */
 | |
| }
 |