Skip to content

0.7.0

Pre-release
Pre-release

Choose a tag to compare

@adambullmer adambullmer released this 24 Jul 07:39
f89bdd8

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:

  1. commit your changes
  2. run vue invoke browser-extension
  3. 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'
    }
  }
}