Skip to content

Commit

Permalink
Merge pull request #1480 from IBMa/fix-ext-build
Browse files Browse the repository at this point in the history
fix(extension): Archives building to wrong location
  • Loading branch information
ErickRenteria authored Jun 5, 2023
2 parents 3bf6238 + 6e881e2 commit 2fa2ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions accessibility-checker-extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ module.exports = {
toType: 'file'
},
{
from: path.join(archivePath, "archives", "**", "*"),
to: path.join(distRootPath, "archives", "**", "*"),
from: path.join(archivePath, "archives"),
to: path.join(distRootPath, "archives"),
globOptions: {
ignore: [
path.join("**", "ace-*.js")
Expand Down

0 comments on commit 2fa2ad3

Please sign in to comment.