From 5ba06401e194a66492d9ae5b767b1105e4249851 Mon Sep 17 00:00:00 2001 From: Garry Trinder Date: Thu, 13 Feb 2025 14:53:10 +0000 Subject: [PATCH] Add LICENSE file to package. Closes #147 --- webpack.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index b661ccc..d004aea 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -48,8 +48,9 @@ const extensionConfig = { plugins: [ new CopyPlugin({ patterns: [ - {from: 'src/snippets.json', to: '[name][ext]'}, - {from: 'src/icon.png', to: '[name][ext]'}, + { from: 'src/snippets.json', to: '[name][ext]' }, + { from: 'src/icon.png', to: '[name][ext]' }, + { from: 'LICENCE', to: '[name][ext]' }, ], }), ],