File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @project-trans/suggestion-box" ,
3
3
"type" : " module" ,
4
- "version" : " 0.4.0 " ,
4
+ "version" : " 0.4.1 " ,
5
5
"packageManager" :
" [email protected] +sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca" ,
6
6
"description" : " Suggestion box for Project Trans" ,
7
7
"author" : {
25
25
"require" : " ./dist/aio.umd.cjs" ,
26
26
"default" : " ./dist/aio.umd.cjs"
27
27
},
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 "
33
33
},
34
34
"./dist/style.css" : " ./dist/style.css"
35
35
},
Original file line number Diff line number Diff line change
1
+ import { copyFile } from 'node:fs/promises'
1
2
import { resolve } from 'node:path'
2
3
/* eslint-disable antfu/no-top-level-await */
3
4
import vue from '@vitejs/plugin-vue'
@@ -47,3 +48,8 @@ await build({
47
48
} ,
48
49
} ,
49
50
} )
51
+
52
+ await copyFile (
53
+ resolve ( import . meta. dirname , '../src/App.vue' ) ,
54
+ resolve ( import . meta. dirname , '../dist/App.vue' ) ,
55
+ )
You can’t perform that action at this time.
0 commit comments