react-instantsearch 6.38.1 → 6.38.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-instantsearch",
3
- "version": "6.38.1",
3
+ "version": "6.38.2",
4
4
  "description": "⚡ Lightning-fast search for React and React Native apps, by Algolia",
5
5
  "main": "index.js",
6
6
  "module": "dist/es/index.js",
@@ -17,7 +17,7 @@
17
17
  "homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/react/",
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "https://github.com/algolia/react-instantsearch"
20
+ "url": "https://github.com/algolia/instantsearch.js"
21
21
  },
22
22
  "author": {
23
23
  "name": "Algolia, Inc.",
@@ -36,7 +36,7 @@
36
36
  "scripts": {
37
37
  "clean": "rm -rf dist",
38
38
  "build": "yarn build:cjs && yarn build:es && yarn build:umd",
39
- "build:cjs": "babel connectors.js dom.js index.js native.js server.js --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist --quiet",
39
+ "build:cjs": "BABEL_ENV=cjs babel connectors.js dom.js index.js native.js server.js --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist --quiet",
40
40
  "build:es": "BABEL_ENV=es babel connectors.js dom.js index.js native.js server.js --root-mode upward --extensions '.js,.ts,.tsx' --out-dir dist/es --quiet",
41
41
  "build:umd": "BABEL_ENV=rollup rollup -c rollup.config.js",
42
42
  "preparePackageFolder": "cp package.json dist && cp ../../README.md dist",
@@ -44,12 +44,13 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@babel/runtime": "^7.1.2",
47
- "react-instantsearch-core": "6.38.1",
48
- "react-instantsearch-dom": "6.38.1",
49
- "react-instantsearch-native": "6.38.1"
47
+ "react-instantsearch-core": "6.38.2",
48
+ "react-instantsearch-dom": "6.38.2",
49
+ "react-instantsearch-native": "6.38.2"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "algoliasearch": ">= 3.1 < 5",
53
53
  "react": ">= 16.3.0 < 19"
54
- }
54
+ },
55
+ "gitHead": "54e18a6e7cfebc2c7c7326676c56c71ee39eb1c2"
55
56
  }