Skip to content

Commit

Permalink
Fix package.json imports (#402)
Browse files Browse the repository at this point in the history
A few of the imports slipped through the cracks. This change fixes them

J=BACK-2545
TEST=manual

Confirmed this still works with the latest version of pages
  • Loading branch information
cea2aj authored Sep 29, 2023
1 parent 801c95b commit 7ada2a2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion THIRD-PARTY-NOTICES
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The following NPM package may be included in this product:

- @yext/search-headless-react@2.4.0-alpha.11
- @yext/search-headless-react@2.4.0-alpha.12

This package contains the following license and notice below:

Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@yext/search-ui-react",
"version": "1.4.0-alpha.27",
"version": "1.4.0-alpha.28",
"description": "A library of React Components for powering Yext Search integrations",
"author": "slapshot@yext.com",
"license": "BSD-3-Clause",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"sideEffects": false,
"types": "./dist/index.d.ts",
"keywords": [
Expand Down Expand Up @@ -83,7 +83,7 @@
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@yext/eslint-config-slapshot": "^0.5.0",
"@yext/search-headless-react": "^2.4.0-alpha.11",
"@yext/search-headless-react": "^2.4.0-alpha.12",
"axe-playwright": "^1.2.3",
"babel-jest": "^29.7.0",
"eslint": "^8.11.0",
Expand All @@ -103,7 +103,7 @@
"typescript": "^5.2.2"
},
"peerDependencies": {
"@yext/search-headless-react": "^2.4.0-alpha.11",
"@yext/search-headless-react": "^2.4.0-alpha.12",
"react": "^16.14 || ^17",
"react-dom": "^16.14 || ^17"
},
Expand Down
6 changes: 3 additions & 3 deletions test-site/package-lock.json

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

0 comments on commit 7ada2a2

Please sign in to comment.