Skip to content

Commit

Permalink
Merge pull request #14 from jvmn/feature/2.4.2-rc
Browse files Browse the repository at this point in the history
2.4.2
  • Loading branch information
xeyefex committed Jul 22, 2021
2 parents 3a42b03 + d8524c6 commit 05b61ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/copy-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ try {
await fs.ensureDir(dest)
await fs.copy(assetsPath, dest, {
filter: function (filepath) {
// ignore js folder that complies via webpack
if (filepath.endsWith('.js')) return false
// Ignore js folder only. Webpack is compiling it
if (filepath.includes('/js/') && filepath.endsWith('.js')) return false
return true
}
})
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jvmn/groundzero-taskrunner-webpack",
"version": "2.4.1",
"version": "2.4.2",
"description": "Taskrunner for JvM/Neckar Groundzero projects",
"keywords": [
"taskrunner",
Expand Down

0 comments on commit 05b61ea

Please sign in to comment.