Skip to content

Commit

Permalink
Create hotfix v1.0.1. (#325)
Browse files Browse the repository at this point in the history
This hotfix fixes issue #294. We had `lodash` as a devDependency, even
though it's used in src.

Co-authored-by: Tom Meyer <tmeyer@yext.com>
  • Loading branch information
tatimblin and tmeyer2115 authored Nov 3, 2022
1 parent d531bd4 commit c24ae51
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yext/search-ui-react",
"version": "1.0.0",
"version": "1.0.1",
"description": "A library of React Components for powering Yext Search integrations",
"author": "slapshot@yext.com",
"license": "BSD-3-Clause",
Expand Down Expand Up @@ -134,6 +134,7 @@
"restoreMocks": true
},
"dependencies": {
"lodash": "^4.17.21",
"@microsoft/api-documenter": "^7.15.3",
"@microsoft/api-extractor": "^7.19.4",
"@reach/auto-id": "^0.18.0",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/filterutils.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NearFilterValue, FieldValueFilter, NumberRangeValue, Matcher, SearchActions, DisplayableFacet, SelectableStaticFilter } from '@yext/search-headless-react';
import isEqual from 'lodash/isEqual';
import { isEqual } from 'lodash';
import { isNumberRangeFilter } from '../models/NumberRangeFilter';
import { SelectableFieldValueFilter } from '../models/SelectableFieldValueFilter';

Expand Down

0 comments on commit c24ae51

Please sign in to comment.