Skip to content

Commit 83f59ca

Browse files
committed
Bump to v0.7.1
1 parent 218e5aa commit 83f59ca

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.npmignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.*
2+
bin/
3+
src/
4+
jest.setup.ts

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [0.7.1] - 2021-07-15
10+
11+
### Changed
12+
13+
- Reduce overall bundle size by ignoring a lot more files in `.npmignore`.
14+
915
## [0.7.0] - 2021-07-15
1016

1117
### Added
@@ -104,7 +110,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
104110

105111
- Initial release 🎉.
106112

107-
[unreleased]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.7.0...HEAD
113+
[unreleased]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.7.1...HEAD
114+
[0.7.1]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.7.0...v0.7.1
108115
[0.7.0]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.6.2...v0.7.0
109116
[0.6.2]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.6.1...v0.6.2
110117
[0.6.1]: https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility/compare/v0.6.0...v0.6.1

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vuejs-accessibility",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "An eslint plugin for checking Vue.js files for accessibility",
55
"main": "dist/index.js",
66
"scripts": {

tsconfig.build.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "./tsconfig.json",
3-
"exclude": ["bin", "src/rules/__tests__", "jest.setup.ts"]
3+
"exclude": ["bin", "src/**/__tests__", "jest.setup.ts"]
44
}

0 commit comments

Comments
 (0)