From f4180d8044930d3e2c65d73123f030511f1f3f0d Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Tue, 7 Jul 2020 13:59:59 +0200 Subject: [PATCH] do not exclude cp949 --- package.json | 2 +- webpack.config.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ff1f42a..16c00c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iconv-lite-umd", - "version": "0.6.5", + "version": "0.6.6", "description": "Iconv-lite as UMD module", "main": "lib/iconv-lite-umd.js", "typings": "iconv-lite-umd.d.ts", diff --git a/webpack.config.js b/webpack.config.js index 7ef978b..54fb2be 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -4,8 +4,7 @@ const path = require("path"); // This saves us some bytes, which is important for vscode-web. const removeUnsupportedEncodings = [ "utf7.js", - "utf32.js", - "tables/cp949.json", + "utf32.js" ].map((file) => { return { test: path.resolve(__dirname, "node_modules/iconv-lite/encodings", file),