From ae40230a2afd5d7affc18216c8b7f24a5a8ea5d5 Mon Sep 17 00:00:00 2001 From: Shane Dell Date: Thu, 5 Dec 2024 15:09:01 -0500 Subject: [PATCH] README.md updates: - Add README.md to VSIX when built - Update the minimum required node version for building. Closes #1108 Closes #1136 --- README.md | 2 +- webpack/ext-package.webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 625ecb2ab..a5587bba3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ This is an extension for Visual Studio Code (VS Code) which enables the interact - Java Development Kit (JDK) 8 or higher - SBT 0.13.8 or higher -- Node 10 or higher +- Node 16 or higher - Yarn (https://yarnpkg.com/getting-started/install) ## Download diff --git a/webpack/ext-package.webpack.config.js b/webpack/ext-package.webpack.config.js index 7ecd6b3de..12498f15e 100644 --- a/webpack/ext-package.webpack.config.js +++ b/webpack/ext-package.webpack.config.js @@ -101,7 +101,7 @@ module.exports = /** @type WebpackConfig */ { plugins: [ new CopyPlugin({ patterns: [ - // { from: 'build/package/.vscodeignore', to: pkg_dir }, + { from: 'README.md', to: `${pkg_dir}` }, { from: 'build/package/LICENSE', to: `${pkg_dir}` }, { from: 'build/package/NOTICE', to: `${pkg_dir}` }, { from: 'dist/styles.css', to: `${pkg_dir}/dist/styles.css` },