Skip to content

Commit 1e1206a

Browse files
committed
Change tha component name to vue-skip-to
1 parent efddb9e commit 1e1206a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# vue-skip-to-content
1+
# vue-skip-to
22
It helps people who only use the keyboard to jump to what matters most

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "vue-skip-to-content",
2+
"name": "vue-skip-to",
33
"version": "0.0.1",
44
"description": "It helps people who only use the keyboard to jump to what matters most.",
5-
"main": "dist/vue-skip-to-content.js",
5+
"main": "dist/vue-skip-to.js",
66
"scripts": {
77
"dev": "rollup --config rollup.config.dev.js --watch",
88
"dist": "rollup --config rollup.config.prod.js",
@@ -13,21 +13,21 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/vue-a11y/vue-skip-to-content.git"
16+
"url": "git+https://github.com/vue-a11y/vue-skip-to.git"
1717
},
1818
"keywords": [
1919
"a11y",
2020
"accessibility",
21-
"skip-to-content",
21+
"skip to main content",
2222
"vue.js",
2323
"keyboard"
2424
],
2525
"author": "Alan Ktquez <[email protected]> (https://medium.com/@ktquez)",
2626
"license": "MIT",
2727
"bugs": {
28-
"url": "https://github.com/vue-a11y/vue-skip-to-content/issues"
28+
"url": "https://github.com/vue-a11y/vue-skip-to/issues"
2929
},
30-
"homepage": "https://github.com/vue-a11y/vue-skip-to-content#readme",
30+
"homepage": "https://github.com/vue-a11y/vue-skip-to#readme",
3131
"devDependencies": {
3232
"babel-core": "^6.26.3",
3333
"babel-eslint": "^8.2.3",

rollup.config.dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export default {
3636
],
3737
output: [
3838
{
39-
name: 'VueSkipToContent',
40-
file: 'vue-skip-to-content.js',
39+
name: 'VueSkipTo',
40+
file: 'vue-skip-to.js',
4141
format: 'umd'
4242
}
4343
]

rollup.config.prod.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default {
1919
],
2020
output: [
2121
{
22-
name: 'VueSkipToContent',
23-
file: 'dist/vue-skip-to-content.js',
22+
name: 'VueSkipTo',
23+
file: 'dist/vue-skip-to.js',
2424
format: 'umd'
2525
}
2626
]

0 commit comments

Comments
 (0)