From 1a75753ac8e3b05680d71d778efae567d5215645 Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Fri, 18 Feb 2022 23:33:41 +0200 Subject: [PATCH] Corrected package.json exports configuration --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f6d1d44..d393f10 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "fuzzybear", - "version": "0.0.8", + "version": "0.0.9", "description": "Fuzzybear is a library for fuzzy string search with a special focus on short strings.", "author": "Itay Grudev", "license": "MIT", "main": "fuzzybear.js", - "exports": "fuzzybear.js", + "exports": "./fuzzybear.js", "type": "module", "jest": { "collectCoverage": true,