Skip to content

Commit 215df5e

Browse files
committed
Copy component to dist
1 parent b27a0b1 commit 215df5e

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
<a name="1.0.5"></a>
6+
## [1.0.5](https://github.com/vue-a11y/vue-skip-to/compare/v1.0.4...v1.0.5) (2018-08-16)
7+
8+
9+
510
<a name="1.0.4"></a>
611
## [1.0.4](https://github.com/vue-a11y/vue-skip-to/compare/v1.0.3...v1.0.4) (2018-05-22)
712

package-lock.json

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

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-skip-to",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "It helps people who only use the keyboard to jump to what matters most.",
55
"main": "dist/vue-skip-to.js",
66
"scripts": {
@@ -49,6 +49,7 @@
4949
"rollup-plugin-babel": "^3.0.4",
5050
"rollup-plugin-buble": "^0.19.2",
5151
"rollup-plugin-butternut": "^0.1.0",
52+
"rollup-plugin-copy": "^0.2.3",
5253
"rollup-plugin-eslint": "^4.0.0",
5354
"rollup-plugin-livereload": "^0.6.0",
5455
"rollup-plugin-node-resolve": "^3.3.0",

rollup.config.prod.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import replace from 'rollup-plugin-replace'
33
import VueLoader from 'rollup-plugin-vue'
44
import butternut from 'rollup-plugin-butternut'
55
import buble from 'rollup-plugin-buble'
6+
import copy from 'rollup-plugin-copy'
67

78
export default {
89
input: 'src/index.js',
@@ -22,6 +23,9 @@ export default {
2223
}),
2324
replace({
2425
'process.env.NODE_ENV': JSON.stringify('production')
26+
}),
27+
copy({
28+
'src/skip-to.vue': 'dist/vue-skip-to.vue'
2529
})
2630
],
2731
output: [

0 commit comments

Comments
 (0)