File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1+ ### [ 1.24.1] ( https://github.com/ElvenTools/elven-tools-cli/releases/tag/v1.24.1 ) (2023-10-29)
2+ - cleanup the code
3+
14### [ 1.24.0] ( https://github.com/ElvenTools/elven-tools-cli/releases/tag/v1.24.0 ) (2023-10-29)
25- update and replace dependencies
36- bump dapp version
Original file line number Diff line number Diff line change 33 "engines" : {
44 "node" : " ^14.13.1 || >=16.0.0"
55 },
6- "version" : " 1.24.0 " ,
6+ "version" : " 1.24.1 " ,
77 "elvenTools" : {
88 "nftSmartContractVersionTagName" : " v1.13.0" ,
99 "sftSmartContractVersionTagName" : " v0.4.0" ,
Original file line number Diff line number Diff line change @@ -23,8 +23,6 @@ const triggerDownloadAndExtract = async (
2323
2424 const dirPath = `${ process . cwd ( ) } /${ dappDirectoryName } ` ;
2525
26- console . log ( 'dirPath: ' , dirPath ) ;
27-
2826 const zip = new AdmZip ( response . data ) ;
2927 const zipEntries = zip . getEntries ( ) ;
3028
@@ -37,14 +35,10 @@ const triggerDownloadAndExtract = async (
3735 const entryName = entry . entryName ;
3836 const flattenedEntryName = entryName . replace ( mainDirInZipName , '' ) ;
3937
40- console . log ( 'flattenedEntryName: ' , flattenedEntryName ) ;
41-
4238 // If the entry is a directory, create it in the extraction directory
4339 if ( entry . isDirectory ) {
4440 const targetDir = path . join ( dirPath , flattenedEntryName ) ;
4541
46- console . log ( 'targetDir: ' , targetDir ) ;
47-
4842 if ( ! fs . existsSync ( targetDir ) ) {
4943 fs . mkdirSync ( targetDir ) ;
5044 }
You can’t perform that action at this time.
0 commit comments