downshift 7.4.1 → 7.5.0

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": "downshift",
3
- "version": "7.4.1",
3
+ "version": "7.5.0",
4
4
  "description": "🏎 A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete, combobox or select dropdown components.",
5
5
  "main": "dist/downshift.cjs.js",
6
6
  "react-native": "dist/downshift.native.cjs.js",
@@ -9,9 +9,10 @@
9
9
  "sideEffects": false,
10
10
  "browserslist": [],
11
11
  "scripts": {
12
- "build": "npm run build:web --silent && npm run build:native --silent",
12
+ "build": "npm run build:web --silent && npm run build:native --silent && npm run build:nativeWeb --silent",
13
13
  "build:web": "kcd-scripts build --bundle --p-react --no-clean --size-snapshot",
14
14
  "build:native": "cross-env BUILD_REACT_NATIVE=true BUILD_FILENAME_SUFFIX=.native kcd-scripts build --bundle cjs --no-clean",
15
+ "build:nativeWeb": "cross-env BUILD_REACT_NATIVE_WEB=true BUILD_FILENAME_SUFFIX=.nativeweb kcd-scripts build --bundle cjs --no-clean",
15
16
  "lint": "kcd-scripts lint",
16
17
  "test": "kcd-scripts test",
17
18
  "test:cover": "kcd-scripts test --coverage",