File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11const fs = require ( 'fs-extra' ) ;
22
3- fs . copySync ( 'README.md' , 'dist/README.md' ) ;
4- fs . copySync ( 'zh_CN.md' , 'dist/zh_CN.md' ) ;
5- fs . copySync ( 'package.json' , 'dist/package.json' ) ;
3+ // fs.copySync('README.md', 'dist/README.md');
4+ // fs.copySync('zh_CN.md', 'dist/zh_CN.md');
5+ // fs.copySync('package.json', 'dist/package.json');
66fs . copySync ( 'bin' , 'dist/bin' ) ;
77fs . copySync ( 'docs' , 'dist/docs' ) ;
88fs . copySync (
Original file line number Diff line number Diff line change 1010 "bin" : {
1111 "esa" : " bin/enter.cjs"
1212 },
13+ "files" : [
14+ " bin" ,
15+ " dist" ,
16+ " zh_CN.md" ,
17+ " README.md"
18+ ],
1319 "scripts" : {
1420 "build" : " rm -rf ./dist && rm -rf ./build && node ./genLocale.cjs && tsc && node ./copy.cjs" ,
1521 "watch" : " tsc --watch" ,
You can’t perform that action at this time.
0 commit comments