From 36f667a781b4a38ac16d9aa43b71d093e741e6dd Mon Sep 17 00:00:00 2001 From: Augustin Husson Date: Tue, 16 Jul 2024 15:27:24 +0200 Subject: [PATCH] fix the package organisation Signed-off-by: Augustin Husson --- .npmignore | 1 + package.json | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.npmignore b/.npmignore index eba0503..de6aa16 100644 --- a/.npmignore +++ b/.npmignore @@ -5,3 +5,4 @@ tsconfig.json .eslintrc.json .circleci/ .github/ +.nvmrc diff --git a/package.json b/package.json index 2f29419..43e1aa1 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@nexucis/fuzzy", - "version": "0.5.0", + "version": "0.5.1", "description": "small, standalone fuzzy search / fuzzy filter. browser or node", - "module": "dist/index.js", - "main": "dist/cjs/index.js", - "types": "dist/index.d.ts", + "module": "index.js", + "main": "cjs/index.js", + "types": "index.d.ts", "scripts": { "build": "tsc", "build:cjs": "tsc --project ./tsconfig.cjs.json",