Skip to content

Commit 3b805ec

Browse files
committed
style: lint
1 parent 4841f2e commit 3b805ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/commands/build.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default defineCommand({
5858
jsxImportSource: 'vue',
5959
jsx: 'automatic',
6060
jsxFactory: 'h',
61-
}
61+
},
6262
},
6363
],
6464
rollup: {

Diff for: test/build.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ describe('module builder', () => {
110110
it('should handle JSX correctly', async () => {
111111
const [component, declaration] = await Promise.all([
112112
readFile(join(distDir, 'runtime/components/JsxComponent.mjs'), 'utf-8'),
113-
readFile(join(distDir, 'runtime/components/JsxComponent.d.ts'), 'utf-8')
113+
readFile(join(distDir, 'runtime/components/JsxComponent.d.ts'), 'utf-8'),
114114
])
115115
expect(component).toMatchFileSnapshot('__snapshots__/JsxComponent.mjs')
116116
expect(declaration).toMatchFileSnapshot('__snapshots__/JsxComponent.d.ts')

0 commit comments

Comments
 (0)