Skip to content

Commit 1724b98

Browse files
committed
fix path
1 parent 9bf5fe6 commit 1724b98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "use-debounce",
3-
"version": "9.0.0",
3+
"version": "9.0.1",
44
"description": "Debounce hook for react",
55
"type": "module",
66
"source": "src/index.ts",
7-
"main": "dist/index.js",
7+
"main": "dist/index.cjs",
88
"module": "dist/index.module.js",
99
"esmodule": "dist/index.modern.js",
1010
"umd:main": "dist/index.umd.js",
@@ -13,13 +13,13 @@
1313
"node": {
1414
"types": "./dist/index.d.ts",
1515
"module": "./dist/index.module.js",
16-
"require": "./dist/index.js",
16+
"require": "./dist/index.cjs",
1717
"import": "./dist/index.mjs"
1818
},
1919
"browser": {
2020
"types": "./dist/index.d.ts",
2121
"import": "./dist/index.module.js",
22-
"require": "./dist/index.js"
22+
"require": "./dist/index.cjs"
2323
},
2424
"default": "./dist/index.module.js"
2525
},

0 commit comments

Comments
 (0)