File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,15 @@ before_install:
11
11
12
12
before_script :
13
13
- npm install -g grunt-cli
14
+ - npm install patternengine-node-underscore
15
+ - npm install patternengine-node-handlebars
16
+ - npm install patternengine-node-twig
14
17
15
18
branches :
16
19
only :
17
20
- master
18
21
- dev
22
+ - issue/438-runAllTestsTravis
19
23
20
24
notifications :
21
25
webhooks :
Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ var ui_builder = function () {
82
82
* @returns boolean - whether or not the pattern is excluded
83
83
*/
84
84
function isPatternExcluded ( pattern , patternlab ) {
85
- var styleGuideExcludes = patternlab . config . styleGuideExcludes ;
86
85
var isOmitted ;
87
86
88
87
// skip underscore-prefixed files
@@ -506,7 +505,7 @@ var ui_builder = function () {
506
505
} ) ;
507
506
if ( omitPatternType ) {
508
507
if ( patternlab . config . debug ) {
509
- console . log ( 'Omitting ' + patternType + ' from building a viewall page because its patternGroup is specified in styleguideExcludes.' ) ;
508
+ console . log ( 'Omitting ' + patternType + ' from building a viewall page because its patternGroup is specified in styleguideExcludes.' ) ;
510
509
}
511
510
} else {
512
511
patterns = patterns . concat ( typePatterns ) ;
Original file line number Diff line number Diff line change 54
54
},
55
55
"patternExportPatternPartials" : [],
56
56
"patternExportDirectory" : " ./pattern_exports/" ,
57
- "cacheBust" : true
57
+ "cacheBust" : true ,
58
+ "outputFileSuffixes" : {
59
+ "rendered" : " .rendered" ,
60
+ "rawTemplate" : " " ,
61
+ "markupOnly" : " .markup-only"
62
+ }
58
63
}
You can’t perform that action at this time.
0 commit comments