This repository was archived by the owner on Jul 23, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### 2.0.4
4
+ - yves build process searches for common entry points in core, even when there is a target theme
5
+
3
6
### 2.0.3
4
7
- ` package.json ` allows module's patch version improvements only
5
8
Original file line number Diff line number Diff line change @@ -75,13 +75,15 @@ module.exports = {
75
75
76
76
if ( ! ! themePattern ) {
77
77
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 ( ) } ` )
79
81
] , context . patterns . entry ( ) ) ;
80
82
}
81
83
82
84
return collect ( 'entry points' , [
83
- path . join ( cwd , `./assets/${ targetPattern } /**/*${ context . patterns . entry ( ) } ` ) ,
84
85
path . join ( cwd , `./vendor/spryker/**/assets/${ targetPattern } /**/*${ context . patterns . entry ( ) } ` ) ,
86
+ path . join ( cwd , `./assets/${ targetPattern } /**/*${ context . patterns . entry ( ) } ` ) ,
85
87
path . join ( cwd , `./src/Pyz/**/${ targetPattern } /**/*${ context . patterns . entry ( ) } ` )
86
88
] , context . patterns . entry ( ) ) ;
87
89
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " antelope" ,
3
- "version" : " 2.0.3 " ,
3
+ "version" : " 2.0.4 " ,
4
4
"description" : " Spryker frontend automation tool" ,
5
5
"main" : " antelope.js" ,
6
6
"preferGlobal" : " true" ,
You can’t perform that action at this time.
0 commit comments