File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
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" ,
7- "files" : [
8- " dist/"
9- ],
107 "bin" : {
118 "esa" : " bin/enter.cjs"
129 },
10+ "files" : [
11+ " bin" ,
12+ " dist/" ,
13+ " zh_CN.md" ,
14+ " README.md"
15+ ],
1316 "scripts" : {
1417 "build" : " rm -rf ./dist && rm -rf ./build && node ./genLocale.cjs && tsc && node ./copy.cjs" ,
1518 "watch" : " tsc --watch" ,
You can’t perform that action at this time.
0 commit comments