2026-05-11 04:50:47 +00:00

21 lines
447 B
JavaScript

/**
* Copyright IBM Corp. 2026, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
'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', '');
},
};