@@ -208,11 +208,14 @@ function uploadChangedFilesInDir(pathToUpload, bucketName, additionalParams) {
208208 message : 'No files found at specified path' ,
209209 } ) ;
210210 } else {
211+ if ( ! additionalParams || ! additionalParams . reuploadAll ) {
212+ console . log ( chalk . blue ( 'Determining objects files...' ) ) ;
213+ }
211214 fileList . forEach ( ( fileName ) => {
212215 const bucketPath = path . relative ( pathToUpload , fileName ) ;
213216 if ( additionalParams && additionalParams . reuploadAll ) {
214217 // eslint-disable-next-line no-console
215- console . log ( chalk . yellow ( `${ fileListLength } objects found, re-uploading all... ` ) ) ;
218+ console . log ( chalk . yellow ( `${ fileListLength } objects found, re-uploading all to S3 Bucket: ${ bucketName } ` ) ) ;
216219 // eslint-disable-next-line max-len
217220 const fileListWithNoBase = fileList . map ( currentFilePath => path . relative ( pathToUpload , currentFilePath ) ) ;
218221
@@ -235,7 +238,7 @@ function uploadChangedFilesInDir(pathToUpload, bucketName, additionalParams) {
235238 if ( testedFiles === fileListLength ) {
236239 if ( changedFiles . length > 0 ) {
237240 // eslint-disable-next-line no-console
238- console . log ( chalk . yellow ( `${ fileListLength } objects found, ${ changedFiles . length } objects require updates...` ) ) ;
241+ console . log ( chalk . yellow ( `${ fileListLength } objects found, uploading ${ changedFiles . length } objects that require updates to S3 Bucket: ${ bucketName } ...` ) ) ;
239242 uploadFiles ( pathToUpload , changedFiles , bucketName , additionalParams )
240243 . then ( ( msg ) => {
241244 resolve ( {
0 commit comments