Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit df8bb19

Browse files
committedJun 18, 2024·
chore: ignore log messages
1 parent f48eae1 commit df8bb19

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed
 

‎packages/unplugin-vue-i18n/test/utils.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ import webpack from 'webpack'
99
import merge from 'webpack-merge'
1010
import memoryfs from 'memory-fs'
1111
import { VueLoaderPlugin } from 'vue-loader'
12+
import fg from 'fast-glob'
1213

1314
import type { PluginOptions } from '../src/types'
1415

16+
let ignoreIds: string[] | null = null
17+
1518
type BundleResolve = {
1619
type: 'vite' | 'webpack'
1720
code: string
@@ -51,6 +54,10 @@ export async function bundleVite(
5154
alias['~target'] = resolve(__dirname, target, fixture)
5255
}
5356

57+
if (ignoreIds == null) {
58+
ignoreIds = await fg(resolve(__dirname, './fixtures/directives/*.vue'))
59+
}
60+
5461
// @ts-ignore
5562
const plugins = [vue(), vitePlugin({ include, ...options })]
5663
const result = await build({
@@ -64,7 +71,17 @@ export async function bundleVite(
6471
write: false,
6572
minify: false,
6673
rollupOptions: {
67-
input: resolve(__dirname, input)
74+
input: resolve(__dirname, input),
75+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
76+
onLog: (level: any, log: any) => {
77+
// NOTE:
78+
// ignore the following messages
79+
// - "Error when using sourcemap for reporting an error: Can't resolve original location of error.",
80+
// - '"undefined" is not exported by "node_modules/vue/dist/vue.esm-bundler.js", imported by "packages/unplugin-vue-i18n/test/fixtures/directives/xxx.vue".'
81+
if (ignoreIds?.includes(log.id)) {
82+
return // ignore
83+
}
84+
}
6885
}
6986
}
7087
})
@@ -127,7 +144,8 @@ export function bundleWebpack(
127144
compiler.outputFileSystem = mfs
128145

129146
return new Promise((resolve, reject) => {
130-
compiler.run((err, stats) => {
147+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
148+
compiler.run((err, stats: any) => {
131149
if (err) {
132150
return reject(err)
133151
}

0 commit comments

Comments
 (0)
Please sign in to comment.