Skip to content

Commit 20b38fd

Browse files
committed
🐛 Removed Vue library from bundle
1 parent 3b6e29c commit 20b38fd

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.2] - 2019-02-21
9+
10+
### Fixed
11+
- Vue.js library from being included to the bundle.
12+
813
## [0.4.1] - 2019-02-20
914

1015
### Added

dist/vue-a11y-dialog.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue-a11y-dialog",
33
"description": "Vue.js component wrapping for a11y-dialog",
4-
"version": "0.4.1",
4+
"version": "0.4.2",
55
"homepage": "https://github.com/morkro/vue-a11y-dialog",
66
"license": "MIT",
77
"author": "Moritz Kröger (https://moritz.berlin)",

rollup.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ export default {
1111
exports: 'named',
1212
format: 'umd',
1313
name: 'VueA11yDialog',
14-
sourcemap: false
14+
sourcemap: false,
15+
globals: {
16+
vue: 'vue'
17+
}
1518
},
19+
external: ['vue'],
1620
plugins: [
1721
resolve({
1822
extensions: ['.vue', '.js']

0 commit comments

Comments
 (0)