Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Mar 13, 2023
1 parent 305f4a9 commit 9b10508
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
9 changes: 9 additions & 0 deletions packages/bundle-utils/CHANGELOG.md
@@ -1,4 +1,13 @@

## @intlify/bundle-utils@5.1.2 (2023-03-13)

#### :bug: Bug Fixes
* [#240](https://github.com/intlify/bundle-tools/pull/240) fix(bundle-utils): strictly js / ts syntax checking ([@kazupon](https://github.com/kazupon))

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


## @intlify/bundle-utils@5.1.1 (2023-03-13)

#### :zap: Improvement Features
Expand Down
2 changes: 1 addition & 1 deletion packages/bundle-utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@intlify/bundle-utils",
"description": "Bundle utilities for Intlify project",
"version": "5.1.1",
"version": "5.1.2",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
Expand Down
11 changes: 11 additions & 0 deletions packages/unplugin-vue-i18n/test/fixtures/locales/ka-JP.ts
@@ -0,0 +1,11 @@
import ja from './ja.json'

export default function loadResource(url) {
return new Promise(resolve => {
fetch(url)
.then(response => response.json())
.then(res => {
resolve({ ...ja, ...res })
})
})
}

0 comments on commit 9b10508

Please sign in to comment.