From 33cf9bbc8682a1e98db259bc783f8c96e2171e53 Mon Sep 17 00:00:00 2001 From: sis0k0 Date: Tue, 20 Mar 2018 17:36:01 +0200 Subject: [PATCH] fix: export uglifyMangleExcludes for backwards compatibility --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 31544e28..3b5145b5 100644 --- a/index.js +++ b/index.js @@ -33,6 +33,9 @@ exports.getAotEntryModule = function (appDirectory = APP_PATH) { return aotEntry; } +// Exported for backwards compatibility +exports.uglifyMangleExcludes = []; + exports.getEntryModule = function (appDirectory = APP_PATH) { const entry = getPackageJsonEntry(appDirectory);