Skip to content

Commit b30ccb3

Browse files
authored
minor release v1.4.0 (#303)
* minor release v1.4.0 * format
1 parent cba0311 commit b30ccb3

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
## v1.4.0 (2022-03-06)
3+
4+
#### :bug: Bug Fixes
5+
* [#302](https://github.com/intlify/eslint-plugin-vue-i18n/pull/302) Fix false positives and false negatives for no-missing-keys and no-unused-keys rules ([@ota-meshi](https://github.com/ota-meshi))
6+
7+
#### Committers: 1
8+
- Yosuke Ota ([@ota-meshi](https://github.com/ota-meshi))
9+
10+
211
## v1.3.0 (2022-02-11)
312

413
#### :star: Features

lib/utils.ts

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import * as keyPath from './utils/key-path'
1414
import * as localeMessages from './utils/locale-messages'
1515
import * as parsers from './utils/parsers'
1616
import * as pathUtils from './utils/path-utils'
17+
import * as regexp from './utils/regexp'
1718
import * as resourceLoader from './utils/resource-loader'
1819
import * as rule from './utils/rule'
1920

@@ -33,6 +34,7 @@ export = {
3334
'locale-messages': localeMessages,
3435
parsers,
3536
'path-utils': pathUtils,
37+
regexp,
3638
'resource-loader': resourceLoader,
3739
rule
3840
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@intlify/eslint-plugin-vue-i18n",
33
"description": "ESLint plugin for Vue I18n",
4-
"version": "1.3.0",
4+
"version": "1.4.0",
55
"author": {
66
"name": "kazuya kawaguchi",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)