Skip to content

Commit

Permalink
🐛 Removed Vue library from bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
morkro committed Feb 21, 2019
1 parent 3b6e29c commit 20b38fd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.2] - 2019-02-21

### Fixed
- Vue.js library from being included to the bundle.

## [0.4.1] - 2019-02-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-a11y-dialog.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-a11y-dialog",
"description": "Vue.js component wrapping for a11y-dialog",
"version": "0.4.1",
"version": "0.4.2",
"homepage": "https://github.com/morkro/vue-a11y-dialog",
"license": "MIT",
"author": "Moritz Kröger (https://moritz.berlin)",
Expand Down
6 changes: 5 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ export default {
exports: 'named',
format: 'umd',
name: 'VueA11yDialog',
sourcemap: false
sourcemap: false,
globals: {
vue: 'vue'
}
},
external: ['vue'],
plugins: [
resolve({
extensions: ['.vue', '.js']
Expand Down

0 comments on commit 20b38fd

Please sign in to comment.