Skip to content

Commit 6349b89

Browse files
committed
🐛 Fixes full file path in bundled output
1 parent b65a9c0 commit 6349b89

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

dist/vue-a11y-dialog.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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.3.0",
4+
"version": "0.3.1",
55
"homepage": "https://github.com/morkro/vue-a11y-dialog",
66
"license": "MIT",
77
"author": "Moritz Kröger (https://moritz.berlin)",

rollup.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ export default {
1818
extensions: ['.vue', '.js']
1919
}),
2020
commonjs(),
21-
vue({ css: true }),
21+
vue({
22+
template: { isProduction: true },
23+
css: true
24+
}),
2225
babel({
2326
include: ['node_modules/a11y-dialog']
2427
}),

0 commit comments

Comments
 (0)