File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
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 11{
22 "name" : " esa-cli" ,
3- "version" : " 0.0.2-beta.0 " ,
3+ "version" : " 0.0.2-beta.1 " ,
44 "description" : " A CLI for operating Alibaba Cloud ESA EdgeRoutine (Edge Functions)." ,
55 "main" : " bin/enter.cjs" ,
66 "type" : " module" ,
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