Skip to content

Commit cc6aaa4

Browse files
committed
Fix "require: false" in package.json exports field
1 parent 33aceed commit cc6aaa4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

addons/dexie-cloud/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dexie-cloud-addon",
3-
"version": "4.2.3",
3+
"version": "4.2.4",
44
"description": "Dexie addon that syncs with to Dexie Cloud",
55
"type": "module",
66
"module": "dist/modern/dexie-cloud-addon.min.js",
@@ -9,17 +9,17 @@
99
".": {
1010
"development": {
1111
"import": "./dist/modern/dexie-cloud-addon.js",
12-
"require": false,
12+
"require": null,
1313
"types": "./dist/modern/dexie-cloud-addon.d.ts"
1414
},
1515
"production": {
1616
"import": "./dist/modern/dexie-cloud-addon.min.js",
17-
"require": false,
17+
"require": null,
1818
"types": "./dist/modern/dexie-cloud-addon.d.ts"
1919
},
2020
"default": {
2121
"import": "./dist/modern/dexie-cloud-addon.min.js",
22-
"require": false,
22+
"require": null,
2323
"types": "./dist/modern/dexie-cloud-addon.d.ts"
2424
}
2525
},

0 commit comments

Comments
 (0)