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

Commit b2e938b

Browse files
committed
prep for 1.6 release
1 parent 145e993 commit b2e938b

File tree

8 files changed

+54
-3
lines changed

8 files changed

+54
-3
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.
22

3+
PL-node-v0.1.6
4+
- ADD: media queries found in css added to ish controls
5+
- ADD: basic lineage support
6+
- ADD: more unit tests
7+
8+
PL-node-v0.1.5
9+
- ADD: Added support for live reload via gruntfile
10+
- THX: thanks @marcinmodestowicz for the proper syntax!
11+
312
PL-node-v0.1.4
413
- FIX: Resolved issue with nested pattern rendering
514
- FIX: Supporting flat pattern name regex's in unix-systems

Gruntfile.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ module.exports = function(grunt) {
1919
object_factory: {
2020
src: './builder/object_factory.js',
2121
dest: './builder/object_factory.js'
22+
},
23+
lineage: {
24+
src: './builder/lineage_hunter.js',
25+
dest: './builder/lineage_hunter.js'
26+
},
27+
media_hunter: {
28+
src: './builder/media_hunter.js',
29+
dest: './builder/media_hunter.js'
30+
},
31+
patternlab_grunt: {
32+
src: './builder/patternlab_grunt.js',
33+
dest: './builder/patternlab_grunt.js'
2234
}
2335
},
2436
copy: {

builder/lineage_hunter.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* patternlab-node - v0.1.6 - 2014
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+
*/
10+
111
(function () {
212
"use strict";
313

builder/media_hunter.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* patternlab-node - v0.1.6 - 2014
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+
*/
10+
111
(function () {
212
"use strict";
313

builder/object_factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* patternlab-node - v0.1.4 - 2014
2+
* patternlab-node - v0.1.6 - 2014
33
*
44
* Brian Muenzenmeyer, and the web community.
55
* Licensed under the MIT license.

builder/patternlab.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* patternlab-node - v0.1.4 - 2014
2+
* patternlab-node - v0.1.6 - 2014
33
*
44
* Brian Muenzenmeyer, and the web community.
55
* Licensed under the MIT license.

builder/patternlab-grunt.js renamed to builder/patternlab_grunt.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/*
2+
* patternlab-node - v0.1.6 - 2014
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+
*/
10+
111
var patternlab_engine = require('./patternlab.js');
212

313
module.exports = function(grunt) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "patternlab-node",
33
"description": "Pattern Lab is a collection of tools to help you create atomic design systems. This is the node command line interface (CLI).",
4-
"version": "0.1.4",
4+
"version": "0.1.6",
55
"devDependencies": {
66
"grunt": "~0.4.0",
77
"grunt-contrib-watch": "~0.6.1",

0 commit comments

Comments
 (0)