Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
"typescript": "5.8.3",
"unbuild": "3.5.0",
"vitest": "3.1.1",
"vue": "3.5.13"
"vue": "3.5.13",
"vue-tsc": "^2.2.8"
},
"resolutions": {
"vue-sfc-transformer": "link:."
Expand Down
47 changes: 19 additions & 28 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/mkdist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,13 @@ function defineVueLoader(options?: DefineVueLoaderOptions): Loader {
}

// generate dts
await context.loadFile({
const files = await context.loadFile({
path: `${input.path}.js`,
srcPath: `${input.srcPath}.js`,
extension: '.js',
getContents: () => 'export default {}',
})
addOutput(...files?.filter(f => f.declaration) || [])

const results = await Promise.all(
blocks.map(async (data) => {
Expand Down
53 changes: 44 additions & 9 deletions test/mkdist.test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { mkdir, readFile, rm, writeFile } from 'node:fs/promises'
import { tmpdir } from 'node:os'
import { join } from 'node:path'
import { fileURLToPath } from 'node:url'
import { mkdist } from 'mkdist'
import { afterAll, describe, expect, it } from 'vitest'
import { vueLoader } from '../src/mkdist'

describe('transform typescript script setup', () => {
const tmpDir = join(tmpdir(), 'fixtures')
const tmpDir = fileURLToPath(new URL('./.tmp/fixtures', import.meta.url))
afterAll(async () => {
await rm(tmpDir, { force: true, recursive: true })
})
Expand Down Expand Up @@ -196,16 +196,16 @@ describe('transform typescript script setup', () => {
expect(
await fixture(
`<template>
<div :data-test="toValue('hello')" />
</template>
<script setup lang="ts">
import { toValue, type Ref } from 'vue'
const msg = 1
</script>`,
<div :data-test="toValue('hello')" />
</template>
<script setup lang="ts">
import { toValue, type Ref } from 'vue'
const msg = 1
</script>`,
),
).toMatchInlineSnapshot(`
"<template>
<div :data-test="toValue('hello')" />
<div :data-test="toValue('hello')" />
</template>

<script setup>
Expand All @@ -216,11 +216,46 @@ describe('transform typescript script setup', () => {
`)
})

it('generates declaration', { timeout: 10000 }, async () => {
const src = `
<template>
<div :data-test="toValue('hello')" />
</template>

<script>
export default { name: 'App' }
</script>

<script setup lang="ts">
defineProps<{ msg: string }>()
import { toValue, type Ref } from 'vue'
const msg = 1
</script>`

expect(await declaration(src)).toMatchInlineSnapshot(`
"declare const _default: import("vue").DefineComponent<{
msg: string;
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
msg: string;
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;
"
`)
})

async function fixture(src: string): Promise<string> {
await rm(tmpDir, { force: true, recursive: true })
await mkdir(join(tmpDir, 'src'), { recursive: true })
await writeFile(join(tmpDir, 'src/index.vue'), src)
await mkdist({ loaders: ['js', vueLoader], rootDir: tmpDir })
return await readFile(join(tmpDir, 'dist/index.vue'), 'utf-8')
}

async function declaration(src: string): Promise<string> {
await rm(tmpDir, { force: true, recursive: true })
await mkdir(join(tmpDir, 'src'), { recursive: true })
await writeFile(join(tmpDir, 'src/index.vue'), src)
await mkdist({ declaration: true, loaders: ['js', vueLoader], rootDir: tmpDir })
return await readFile(join(tmpDir, 'dist/index.vue.d.ts'), 'utf-8')
}
})