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

Commit 97e2ebc

Browse files
author
Alessandro Bellini
committed
version 2.0.4
1 parent cd90c72 commit 97e2ebc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 2.0.4
4+
- yves build process searches for common entry points in core, even when there is a target theme
5+
36
### 2.0.3
47
- `package.json` allows module's patch version improvements only
58

lib/automation/collector.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,15 @@ module.exports = {
7575

7676
if (!!themePattern) {
7777
return collect('entry points', [
78-
path.join(cwd, `./assets/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`)
78+
path.join(cwd, `./vendor/spryker/**/assets/${targetPattern}/**/*${context.patterns.entry()}`),
79+
path.join(cwd, `./assets/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`),
80+
path.join(cwd, `./src/Pyz/**/${targetPattern}/${themePattern}/**/*${context.patterns.entry()}`)
7981
], context.patterns.entry());
8082
}
8183

8284
return collect('entry points', [
83-
path.join(cwd, `./assets/${targetPattern}/**/*${context.patterns.entry()}`),
8485
path.join(cwd, `./vendor/spryker/**/assets/${targetPattern}/**/*${context.patterns.entry()}`),
86+
path.join(cwd, `./assets/${targetPattern}/**/*${context.patterns.entry()}`),
8587
path.join(cwd, `./src/Pyz/**/${targetPattern}/**/*${context.patterns.entry()}`)
8688
], context.patterns.entry());
8789
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "antelope",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Spryker frontend automation tool",
55
"main": "antelope.js",
66
"preferGlobal": "true",

0 commit comments

Comments
 (0)