Skip to content

Commit 4379f23

Browse files
committed
feat: ✨ distribute SFC
1 parent 6def4fb commit 4379f23

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@project-trans/suggestion-box",
33
"type": "module",
4-
"version": "0.4.0",
4+
"version": "0.4.1",
55
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
66
"description": "Suggestion box for Project Trans",
77
"author": {
@@ -25,11 +25,11 @@
2525
"require": "./dist/aio.umd.cjs",
2626
"default": "./dist/aio.umd.cjs"
2727
},
28-
"./dist/aio": {
29-
"types": "./dist/aio.d.ts",
30-
"import": "./dist/aio.js",
31-
"require": "./dist/aio.umd.cjs",
32-
"default": "./dist/aio.umd.cjs"
28+
"./component": {
29+
"types": "./dist/App.vue.d.ts",
30+
"import": "./dist/App.vue",
31+
"require": "./dist/App.vue",
32+
"default": "./dist/App.vue"
3333
},
3434
"./dist/style.css": "./dist/style.css"
3535
},

script/build.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { copyFile } from 'node:fs/promises'
12
import { resolve } from 'node:path'
23
/* eslint-disable antfu/no-top-level-await */
34
import vue from '@vitejs/plugin-vue'
@@ -47,3 +48,8 @@ await build({
4748
},
4849
},
4950
})
51+
52+
await copyFile(
53+
resolve(import.meta.dirname, '../src/App.vue'),
54+
resolve(import.meta.dirname, '../dist/App.vue'),
55+
)

0 commit comments

Comments
 (0)