Releases: adambullmer/vue-cli-plugin-browser-extension
0.9.0
Refactored Prompts into a single list
Storing results of generation as config values
Consuming new config values
0.8.1
Fixed some issues with scaffolding the manifest.json file
0.8.0
- Added content script generation
- made popup generation optional (default on)
- Updated boilerplate to mostly work out of the box
0.7.0
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'
}
}
}
0.6.4
Fix dev server failure when no key.pem
file is found
Removed unused dependency
0.6.3
Fixing product dist-zip script errors by removing in favor of a webpack zip plugin
0.6.2
Fixing builds failing due to missing key.pem
file
0.6.1
resolves missing icons generator directory
0.6.0
Added generation and build configuration for an extension's options
page
0.5.0
- Added in the icons directory to be scaffolded
- Fixed duplicate manifest key
- Tidied up the README