From 019c6d06b0e1246ceed8e579f57e44441cbbf6d9 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 4 Dec 2021 12:09:55 -0800 Subject: [PATCH] [meta] simplify "exports" --- package.json | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index da13c9e..c35384a 100644 --- a/package.json +++ b/package.json @@ -4,18 +4,8 @@ "description": "Robustly `.call.bind()` a function", "main": "index.js", "exports": { - ".": [ - { - "default": "./index.js" - }, - "./index.js" - ], - "./callBound": [ - { - "default": "./callBound.js" - }, - "./callBound.js" - ], + ".": "./index.js", + "./callBound": "./callBound.js", "./package.json": "./package.json" }, "scripts": {