def resize_image(image_path_to_read, width, heigth, image_path_to_write)
  Dir.chdir(root_project_directory_path()) do
    sh(
      'yarn', 'resize:image',
      '--imagePathToRead', image_path_to_read,
      '--width', width.to_s,
      '--height', heigth.to_s,
      '--imagePathToWrite', image_path_to_write
    )
  end
end
