From 34b951f4c6a4855c6e75db3463478de3330f12a6 Mon Sep 17 00:00:00 2001 From: Andrew Henry Date: Mon, 14 Feb 2022 17:15:21 -0800 Subject: [PATCH] Bumped dependency versions to fix build issues in Node 16 and later (#4866) Co-authored-by: John Hill --- package.json | 8 ++++---- webpack.common.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index fa35c1dbe8..1fd8f880eb 100644 --- a/package.json +++ b/package.json @@ -64,11 +64,11 @@ "sinon": "13.0.1", "style-loader": "^1.0.1", "uuid": "^3.3.3", - "vue": "2.5.6", + "vue": "2.6.14", "vue-eslint-parser": "8.2.0", "vue-loader": "15.9.8", - "vue-template-compiler": "2.5.6", - "webpack": "5.67.0", + "vue-template-compiler": "2.6.14", + "webpack": "5.68.0", "webpack-cli": "4.9.2", "webpack-dev-middleware": "^3.1.3", "webpack-hot-middleware": "^2.22.3", @@ -105,7 +105,7 @@ "url": "https://github.com/nasa/openmct.git" }, "engines": { - "node": ">=12.20.1 <15.0.0" + "node": ">=12.22.0" }, "author": "", "license": "Apache-2.0", diff --git a/webpack.common.js b/webpack.common.js index adb7f25b54..eb7291ec2f 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();