File: export-commonjs.patch

package info (click to toggle)
node-camelcase-keys 10.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188 kB
  • sloc: javascript: 411; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 482 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: export commonjs files
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2025-09-15

--- a/package.json
+++ b/package.json
@@ -13,7 +13,8 @@
 	"type": "module",
 	"exports": {
 		"types": "./index.d.ts",
-		"default": "./index.js"
+		"import": "./index.js",
+		"require": "./index.cjs"
 	},
 	"sideEffects": false,
 	"engines": {
@@ -24,6 +25,7 @@
 		"bench": "matcha bench/bench.js"
 	},
 	"files": [
+		"index.cjs",
 		"index.js",
 		"index.d.ts"
 	],