Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Henry <andrew.k.henry@nasa.gov>2022-02-15 04:15:21 +0300
committerGitHub <noreply@github.com>2022-02-15 04:15:21 +0300
commit34b951f4c6a4855c6e75db3463478de3330f12a6 (patch)
tree32a031209932985b6270fb1d902211e31290a512 /webpack.common.js
parenta7d4006fee82e17c9826431fa53e0bb419a4ae0b (diff)
Bumped dependency versions to fix build issues in Node 16 and later (#4866)
Co-authored-by: John Hill <john.c.hill@nasa.gov>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index adb7f25b5..eb7291ec2 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -6,7 +6,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
const webpack = require('webpack');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
-const VueLoaderPlugin = require('vue-loader/lib/plugin');
+const {VueLoaderPlugin} = require('vue-loader');
const gitRevision = require('child_process')
.execSync('git rev-parse HEAD')
.toString().trim();