Skip to content

Commit

Permalink
update package json (#158)
Browse files Browse the repository at this point in the history
Update all the entry points in package.json to omit the `src` directory. The removal of `package.json` import [here](https://github.com/yext/search-headless-react/pull/156/files#diff-e08419e5b1bb742eaecd92aeeb58a12baa6250e1f1d28d3a35c3bb0f72aa5224L5) means the src/ is no longer generated in the lib folder.
  • Loading branch information
yen-tt committed Sep 6, 2022
1 parent 848aefe commit 34a77e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 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,10 +1,10 @@
{
"name": "@yext/search-headless-react",
"version": "2.0.0-alpha.157",
"version": "2.0.0-alpha.158",
"description": "The official React UI Bindings layer for Search Headless",
"main": "./lib/esm/src/index.js",
"main": "./lib/esm/index.js",
"license": "BSD-3-Clause",
"types": "./lib/esm/src/index.d.ts",
"types": "./lib/esm/index.d.ts",
"keywords": [
"search",
"react",
Expand All @@ -13,8 +13,8 @@
"yext"
],
"exports": {
"import": "./lib/esm/src/index.js",
"require": "./lib/commonjs/src/index.js"
"import": "./lib/esm/index.js",
"require": "./lib/commonjs/index.js"
},
"files": [
"lib",
Expand Down

0 comments on commit 34a77e6

Please sign in to comment.