Skip to content

Commit fbd6ab2

Browse files
committed
updated changelog
updated unit tests to reflect a refactor
1 parent b7e2c98 commit fbd6ab2

File tree

7 files changed

+40
-39
lines changed

7 files changed

+40
-39
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ PL-node-v0.14.0
44
- ADD: Support for style modifiers
55
- ADD: Support for styleGuideExcludes
66
- THX: Thanks to @bramsmulders for the styleGuideExcludes pull request and @illepic for the original headsup
7+
- FIX: Fix an issue where listitem blocks would only render if the pattern containing the block had a partial within it
78

89
PL-node-v0.13.1
910
- FIX: Allow verbose partials for list items

builder/list_item_hunter.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*
2-
* patternlab-node - v0.14.0 - 2015
3-
*
4-
* Brian Muenzenmeyer, and the web community.
5-
* Licensed under the MIT license.
6-
*
7-
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
8-
*
9-
*/
1+
/*
2+
* patternlab-node - v0.14.0 - 2015
3+
*
4+
* Brian Muenzenmeyer, and the web community.
5+
* Licensed under the MIT license.
6+
*
7+
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
8+
*
9+
*/
1010

1111
(function () {
1212
"use strict";

builder/parameter_hunter.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*
2-
* patternlab-node - v0.14.0 - 2015
3-
*
1+
/*
2+
* patternlab-node - v0.14.0 - 2015
3+
*
44
* Brian Muenzenmeyer, and the web community.
5-
* Licensed under the MIT license.
6-
*
7-
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
5+
* Licensed under the MIT license.
6+
*
7+
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
88
*
99
*/
1010

builder/pattern_assembler.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*
2-
* patternlab-node - v0.14.0 - 2015
3-
*
1+
/*
2+
* patternlab-node - v0.14.0 - 2015
3+
*
44
* Brian Muenzenmeyer, and the web community.
5-
* Licensed under the MIT license.
6-
*
7-
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
5+
* Licensed under the MIT license.
6+
*
7+
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
88
*
99
*/
1010

builder/patternlab.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/*
2-
* patternlab-node - v0.14.0 - 2015
3-
*
1+
/*
2+
* patternlab-node - v0.14.0 - 2015
3+
*
44
* Brian Muenzenmeyer, and the web community.
5-
* Licensed under the MIT license.
6-
*
7-
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
5+
* Licensed under the MIT license.
6+
*
7+
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
88
*
99
*/
1010

builder/style_modifier_hunter.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*
2-
* patternlab-node - v0.14.0 - 2015
3-
*
4-
* Brian Muenzenmeyer, and the web community.
5-
* Licensed under the MIT license.
6-
*
7-
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
8-
*
9-
*/
1+
/*
2+
* patternlab-node - v0.14.0 - 2015
3+
*
4+
* Brian Muenzenmeyer, and the web community.
5+
* Licensed under the MIT license.
6+
*
7+
* Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice.
8+
*
9+
*/
1010

1111
(function () {
1212
"use strict";

test/list_item_hunter_tests.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
"extendedTemplate" : "{{#listItems.two}}{{> test-simple }}{{/listItems.two}}",
220220
"key": "test-patternName",
221221
"jsonFileData" : {},
222-
"patternSpecificListJson" : {
222+
"listitems" : {
223223
"2": [
224224
{
225225
"title": "One"
@@ -281,7 +281,7 @@
281281
"extendedTemplate" : "{{#listItems.one}}{{> test-simple }}{{/listItems.one}}",
282282
"key": "test-patternName",
283283
"jsonFileData" : {},
284-
"patternSpecificListJson" : {
284+
"listitems" : {
285285
"2": [
286286
{
287287
"title": "One"
@@ -343,7 +343,7 @@
343343
"extendedTemplate" : "{{#listItems.one}}{{> test-simple }}{{/listItems.one}}",
344344
"key": "test-patternName",
345345
"jsonFileData" : {},
346-
"patternSpecificListJson" : {
346+
"listitems" : {
347347
"1": [
348348
{
349349
"title": "One"

0 commit comments

Comments
 (0)