Skip to content

Commit

Permalink
pkp/pkp-lib#9753 [stable-3_3_0] Copy jquery, jquery-ui and jquery-val…
Browse files Browse the repository at this point in the history
…idation files from node_modules to lib/pkp vendor and js/plugins folder
  • Loading branch information
blesildaramirez authored and asmecher committed Sep 5, 2024
1 parent b033bd0 commit fdbe59a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions vue.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
var path = require('path');
const CopyPlugin = require('copy-webpack-plugin');

module.exports = {
css: {
Expand Down Expand Up @@ -34,6 +35,25 @@ 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')
Expand Down

0 comments on commit fdbe59a

Please sign in to comment.