From daf5de79fdd0305617209978cee4651ede84c789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bazyli=20Brz=C3=B3ska?= Date: Sun, 16 Sep 2018 20:42:32 +0200 Subject: [PATCH] fix incorrect file being required (#54) fixes #54 --- dist/hashids.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/hashids.js b/dist/hashids.js index 545ace0..f03b367 100644 --- a/dist/hashids.js +++ b/dist/hashids.js @@ -1,6 +1,6 @@ "use strict"; // this file here is for backwards compatibility with an earlier CommonJS version -const Hashids = require("./hashids").default; +const Hashids = require("./index").default; Object.defineProperty(Hashids, "__esModule", {value: true}); Hashids.default = module.exports; module.exports = Hashids;