0.7.0
Pre-release
Pre-release
Refactored build pipeline to take advantage of vue's pages config.
This will break existing builds as they won't have the popup or the options pages rendered anymore.
Upgrade Instructions:
Recommended path:
- commit your changes
- run
vue invoke browser-extension - observe the diff
Manual Path:
Merge this with your vue.config.js file, including the options/options block only if you scaffolded with the options page:
module.exports = {
pages: {
'popup/popup': {
entry: 'src/popup/popup.js',
title: 'Popup'
},
'options/options': {
entry: 'src/options/options.js',
title: 'Options'
}
}
}