Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
version 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro Bellini committed May 18, 2016
1 parent cd90c72 commit 97e2ebc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 2.0.4
- yves build process searches for common entry points in core, even when there is a target theme

### 2.0.3
- `package.json` allows module's patch version improvements only

Expand Down
6 changes: 4 additions & 2 deletions lib/automation/collector.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,15 @@ module.exports = {

if (!!themePattern) {
return collect('entry points', [
path.join(cwd, `./assets/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`)
path.join(cwd, `./vendor/spryker/**/assets/${targetPattern}/**/*${context.patterns.entry()}`),
path.join(cwd, `./assets/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`),
path.join(cwd, `./src/Pyz/**/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`)
], context.patterns.entry());
}

return collect('entry points', [
path.join(cwd, `./assets/${targetPattern}/**/*${context.patterns.entry()}`),
path.join(cwd, `./vendor/spryker/**/assets/${targetPattern}/**/*${context.patterns.entry()}`),
path.join(cwd, `./assets/${targetPattern}/**/*${context.patterns.entry()}`),
path.join(cwd, `./src/Pyz/**/${targetPattern}/**/*${context.patterns.entry()}`)
], context.patterns.entry());
}
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": "antelope",
"version": "2.0.3",
"version": "2.0.4",
"description": "Spryker frontend automation tool",
"main": "antelope.js",
"preferGlobal": "true",
Expand Down

0 comments on commit 97e2ebc

Please sign in to comment.