aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.d/moment.js
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2020-03-11 16:18:17 +0100
committerRobert Jaros <rjaros@finn.pl>2020-03-11 16:18:17 +0100
commit9e243a469ae6544e8cf523ad09b959f541c3f565 (patch)
treebe9c7447e221af49180c9e98434df7f988b940b8 /webpack.config.d/moment.js
parentec6084c42c13a621e17b17bd40d90b5c7879f0ec (diff)
downloadkvision-9e243a469ae6544e8cf523ad09b959f541c3f565.tar.gz
kvision-9e243a469ae6544e8cf523ad09b959f541c3f565.tar.bz2
kvision-9e243a469ae6544e8cf523ad09b959f541c3f565.zip
Upgrade to Kotlin 1.3.70 + other dependencies (Coroutinse, Serialization, Spring Boot)
Major refactoring of build architecture.
Diffstat (limited to 'webpack.config.d/moment.js')
-rw-r--r--webpack.config.d/moment.js16
1 files changed, 12 insertions, 4 deletions
diff --git a/webpack.config.d/moment.js b/webpack.config.d/moment.js
index e8db2ea0..94d91914 100644
--- a/webpack.config.d/moment.js
+++ b/webpack.config.d/moment.js
@@ -1,4 +1,12 @@
-config.plugins.push(new webpack.ProvidePlugin({
- moment: "moment",
- "window.moment": "moment"
-}));
+;(function() {
+ const webpack = require('webpack')
+ try {
+ const moment = require("moment");
+
+ config.plugins.push(new webpack.ProvidePlugin({
+ moment: "moment",
+ "window.moment": "moment"
+ }));
+ } catch (e) {
+ }
+})();