themer/cli/packages/brave/lib/index.js
2020-04-24 10:30:09 -06:00

12 lines
284 B
JavaScript

const { render, renderInstructions: renderChromeInstructions } = require('@themer/chrome');
const renderInstructions = paths =>
renderChromeInstructions(paths)
.replace(/chrome/g, 'brave')
.replace(/Chrome/g, 'Brave');
module.exports = {
render,
renderInstructions
};