Skip to content

Commit

Permalink
fix(vue-i18n-loader): change from cli to bundle-utils (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon authored Jul 13, 2021
1 parent 7b74145 commit ee92f94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/vue-i18n-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/intlify/bundle-tools/issues"
},
"dependencies": {
"@intlify/cli": "^0.5.0",
"@intlify/bundle-utils": "^0.1.0",
"@intlify/shared": "^9.1.6",
"loader-utils": "^2.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-i18n-loader/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import loaderUtils from 'loader-utils'
import { parse, ParsedUrlQuery } from 'querystring'
import { RawSourceMap } from 'source-map'
import { isEmptyObject, isString } from '@intlify/shared'
import { generateJSON, generateYAML } from '@intlify/cli'
import { generateJSON, generateYAML } from '@intlify/bundle-utils'

import type { CodeGenOptions, DevEnv } from '@intlify/cli'
import type { CodeGenOptions, DevEnv } from '@intlify/bundle-utils'
import type { VueI18nLoaderOptions } from './options'

const loader: webpack.loader.Loader = function (
Expand Down

0 comments on commit ee92f94

Please sign in to comment.