From fde0ffda43480e213d7d3aca3eb4c59ea97b03a6 Mon Sep 17 00:00:00 2001 From: Labhansh Agrawal Date: Thu, 7 Jan 2021 17:13:34 +0530 Subject: [PATCH] copy yarn.lock to /target --- webpack.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webpack.config.ts b/webpack.config.ts index edaa98a6..da57025a 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -41,6 +41,10 @@ const config: webpack.Configuration[] = [ globOptions: {ignore: ['**/node_modules/**']}, to: '[name].[ext]' }, + { + from: './app/yarn.lock', + to: 'yarn.lock' + }, { from: './app/keymaps/*.json', globOptions: {ignore: ['**/node_modules/**']},