Skip to content

Commit

Permalink
release: bundle-utils@5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Mar 7, 2023
1 parent ac3c953 commit dc601d6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
9 changes: 9 additions & 0 deletions packages/bundle-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

## @intlify/bundle-utils@5.0.0 (2023-03-07)

#### :star: Features
* [#230](https://github.com/intlify/bundle-tools/pull/230) feat(bundle-utils): support js resource ([@kazupon](https://github.com/kazupon))

#### Committers: 1
- kazuya kawaguchi ([@kazupon](https://github.com/kazupon))


## @intlify/bundle-utils@4.0.0 (2023-02-08)

#### :zap: Improvement Features
Expand Down
2 changes: 1 addition & 1 deletion packages/bundle-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@intlify/bundle-utils",
"description": "Bundle utilities for Intlify project",
"version": "4.0.0",
"version": "5.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
Expand Down
7 changes: 7 additions & 0 deletions packages/unplugin-vue-i18n/test/fixtures/locales/en-US.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default {
message: "@.caml:{'no apples'} | {0} apple | {n} apples",
nest: {
hello: 'hello {name}!'
},
items: ['hello', 2, { foo: 'foooo' }]
}
8 changes: 8 additions & 0 deletions packages/unplugin-vue-i18n/test/fixtures/locales/ja-JP.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
type Foo = 'foo'
export default {
message: "@.caml:{'no apples'} | {0} apple | {n} apples",
nest: {
hello: 'hello {name}!'
},
items: ['hello', 2, { foo: 'foooo' }]
}

0 comments on commit dc601d6

Please sign in to comment.