UNPKG

ring-websites-toolbelt

Version:

Ring Publishing Platform tool to work with Ring Websites

18 lines (13 loc) 376 B
const ThemeScriptAbstract = require(`./../../ThemeScriptAbstract`); class Purge extends ThemeScriptAbstract { constructor(options) { super(options); } async execute() { this.validateThemeJson(); this.loadThemeVarriables(); this.setUpProviders(); await this.purgeTheme(); } } module.exports = Purge;