From f064dcf965ec6c4e4a994998ef50bdc7e49eb37a Mon Sep 17 00:00:00 2001 From: jos Date: Wed, 4 Sep 2019 09:42:40 +0200 Subject: [PATCH] Fixed `index.js` pointing to non-transpiled code. See #783 --- HISTORY.md | 1 + index.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 646bd0c..f5d9043 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,6 +5,7 @@ https://github.com/josdejong/jsoneditor ## not yet published, version 7.0.3 +- Fixed `index.js` pointing to non-transpiled code. See #783. - Fixed absolute url of images in SASS. Thanks @moonbreezee. diff --git a/index.js b/index.js index 2df7e5a..af2df48 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -module.exports = require('./src/js/JSONEditor') +module.exports = require('./dist/jsoneditor')