File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 132132 "dev" : " tsc -w" ,
133133 "build" : " rimraf dist tsconfig.tsbuildinfo && tsc && rimraf tsconfig.tsbuildinfo" ,
134134 "build-mv" : " npm run build && mv -f ~/Documents/grow/botasaurus/js/botasaurus-js/dist/* ~/Documents/google-maps-extractor-desktop/node_modules/botasaurus/dist/" ,
135+ "build-mv-starter" : " npm run build && mv -f ~/Documents/grow/botasaurus/js/botasaurus-js/dist/* ~/Documents/botasaurus-desktop-starter/node_modules/botasaurus-server/dist/" ,
135136 "clean" : " rimraf dist tsconfig.tsbuildinfo" ,
136137 "clean-install" : " rm -rf dist/ node_modules/ package-lock.json yarn.lock .next/* && npm install" ,
137138 "prepublishOnly" : " npm run build" ,
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ function convertNestedToJsonForExcelInPlace(inputList: any[]): any[] {
194194
195195
196196function removeNonObjects ( data : any [ ] ) : any [ ] {
197- return data . filter ( ( x ) => typeof x === 'object' && ( x !== null || x !== undefined ) )
197+ return data . filter ( ( x ) => typeof x === 'object' && x !== null && x !== undefined )
198198}
199199
200200
@@ -543,6 +543,7 @@ convertNestedToJsonForExcelInPlace,
543543convertNestedToJsonInPlace ,
544544cleanDataInPlace ,
545545normalizeItem ,
546+ appendOutputIfNeeded ,
546547}
547548
548549// zipFiles,
You can’t perform that action at this time.
0 commit comments