Merge pull request #1482 from h3poteto/fix/copy-plugin

Fix ignore option of copy-webpack-plugin
This commit is contained in:
AkiraFukushima 2020-05-28 01:11:13 +09:00 committed by GitHub
commit 7d97cf62d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

View File

@ -66,7 +66,6 @@ let mainConfig = {
from: path.join(__dirname, '../src/config/locales'),
to: path.join(__dirname, '../dist/electron/locales'),
globOptions: {
gitignore: true,
ignore: ['.*', '*~']
}
}

View File

@ -186,7 +186,6 @@ if (process.env.NODE_ENV === 'production') {
from: path.join(__dirname, '../static'),
to: path.join(__dirname, '../dist/electron/static'),
globOptions: {
gitignore: true,
ignore: ['.*', '*~']
}
}

View File

@ -136,7 +136,6 @@ if (process.env.NODE_ENV === 'production') {
from: path.join(__dirname, '../static'),
to: path.join(__dirname, '../dist/web/static'),
globOptions: {
gitignore: true,
ignore: ['.*', '*~']
}
}