Skip to content

Releases: adambullmer/vue-cli-plugin-browser-extension

0.9.0

26 Jul 07:38
58c5499
Compare
Choose a tag to compare
0.9.0 Pre-release
Pre-release

Refactored Prompts into a single list
Storing results of generation as config values
Consuming new config values

0.8.1

26 Jul 07:37
8e4071d
Compare
Choose a tag to compare
0.8.1 Pre-release
Pre-release

Fixed some issues with scaffolding the manifest.json file

0.8.0

25 Jul 09:19
15c66c5
Compare
Choose a tag to compare
0.8.0 Pre-release
Pre-release
  • Added content script generation
  • made popup generation optional (default on)
  • Updated boilerplate to mostly work out of the box

0.7.0

24 Jul 07:39
f89bdd8
Compare
Choose a tag to compare
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:

  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'
    }
  }
}

0.6.4

24 Jul 07:31
8629666
Compare
Choose a tag to compare
0.6.4 Pre-release
Pre-release

Fix dev server failure when no key.pem file is found
Removed unused dependency

0.6.3

24 Jul 06:44
11315ea
Compare
Choose a tag to compare
0.6.3 Pre-release
Pre-release

Fixing product dist-zip script errors by removing in favor of a webpack zip plugin

0.6.2

24 Jul 06:42
cae9d52
Compare
Choose a tag to compare
0.6.2 Pre-release
Pre-release

Fixing builds failing due to missing key.pem file

0.6.1

24 Jul 06:05
ee3cd2a
Compare
Choose a tag to compare
0.6.1 Pre-release
Pre-release

resolves missing icons generator directory

0.6.0

21 Jul 22:16
f41457f
Compare
Choose a tag to compare
0.6.0 Pre-release
Pre-release

Added generation and build configuration for an extension's options page

0.5.0

21 Jul 21:53
3f46b7c
Compare
Choose a tag to compare
0.5.0 Pre-release
Pre-release
  • Added in the icons directory to be scaffolded
  • Fixed duplicate manifest key
  • Tidied up the README