mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict';
 | 
						|
const fs = require('fs');
 | 
						|
module.exports = {
 | 
						|
  name: require('./package').name,
 | 
						|
 | 
						|
  isDevelopingAddon() {
 | 
						|
    return true;
 | 
						|
  },
 | 
						|
 | 
						|
  postBuild(result) {
 | 
						|
    // We gitignore the contents of our output directory http/web_ui
 | 
						|
    // but we need to keep the folder structure for the Vault build
 | 
						|
    fs.writeFileSync(result.directory + '/.gitkeep', '');
 | 
						|
  },
 | 
						|
};
 |