Documentation
Latest
Latest
  • Reactify Search
  • Getting Started
  • Guides
    • Upgrade workflow
    • Upgrade v4 to v5
    • Liquid Theme
    • SSR
  • Release Notes
  • Troubleshooting
    • Categorising Issues
    • Common Issues
    • Debugger
    • CodeSandbox
    • Further Troubleshooting
  • Security Overview
  • Components
    • Component Basics
    • ReactifySearchProvider
    • Sensors
    • Search
    • SortBy
    • ClearAll
    • FiltersSelected
    • Filters
    • Filter
    • Results
    • Stats
    • Suggestions
    • CustomComponent
  • Hooks
    • useSearch
    • useSortBy
    • useFilters
    • useResults
  • Classes
    • ReactifySearchLiquidFactory
Powered by GitBook
On this page
  • Basic workflow
  • Git workflow

Was this helpful?

  1. Guides

Upgrade workflow

Basic workflow

  1. Install the latest version of @usereactify/search package.

npm install @usereactify/search@latest

Git workflow

The instructions below apply to most people who use Git and a CI/CD process for deploying preview builds.

  1. Clone the stores frontend repository and checkout the master or main branch.

git clone git@gitlab.com:foobar/foobar-website.git
git checkout master
  1. Find where the @usereactify/search package is installed, for theme-based websites it's usually in the root and for headless it's usually in the app folder.

cd app
  1. Install the latest version of @usereactify/search package.

npm install @usereactify/search@latest
  1. Create a new branch, stage the changes, commit the changes and push to the remote repository

git checkout -b feature/upgrade-reactify-search
git add .
git commit -m "feat: upgrade reactify search"
  1. Visit the remote repository online and submit a pull request.

Allow CI/CD processes to create a preview builds, review the preview and if there are no issues merge the pull request.

PreviousGuidesNextUpgrade v4 to v5

Last updated 1 year ago

Was this helpful?