From e25c25751cfd6de36f8350980cb107b4dca7fb20 Mon Sep 17 00:00:00 2001 From: Blesilda Ramirez Date: Mon, 12 Aug 2024 23:56:28 +0800 Subject: [PATCH] pkp/pkp-lib#9753 Remove copy scripts from node_modules --- vue.config.js | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/vue.config.js b/vue.config.js index 6c28993ff0b..0b69cd5f198 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,5 +1,4 @@ var path = require('path'); -const CopyPlugin = require('copy-webpack-plugin'); module.exports = { css: { @@ -35,25 +34,6 @@ module.exports = { hotUpdateChunkFilename: 'hot-updates/hot-update.js', hotUpdateMainFilename: 'hot-updates/hot-update.json' }, - plugins: [ - new CopyPlugin([ - // copy jquery and jquery-ui from node_modules to lib/pkp composer's vendor dir - { - from: 'node_modules/jquery/dist/', - to: '../lib/pkp/lib/vendor/components/jquery/', - }, - { - from: 'node_modules/jquery-ui/dist/*.js', - to: '../lib/pkp/lib/vendor/components/jqueryui/[name].[ext]', - }, - - // copy jquery-validation from node_modules to lib/pkp/js/lib - { - from: 'node_modules/jquery-validation/dist/', - to: '../lib/pkp/js/lib/jquery/plugins/validate/', - }, - ]) - ], resolve: { alias: { '@': path.resolve(__dirname, 'lib/ui-library/src')