Skip to content

Commit 400c811

Browse files
Merge pull request #800 from pattern-lab/dev
Pattern Lab Node v3.0.0-alpha.8
2 parents 7754c73 + bcf60e4 commit 400c811

34 files changed

+3480
-863
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<!-- before posting an issue, try chatting on https://gitter.im/pattern-lab/node -->
2-
<!-- before posting an issue, verify you are running at least Node 4 or 5 -->
32

4-
I am using Pattern Lab Node `vX.X.X` on `Windows | Mac | Linux`, with Node `vX.X.X`, using the `Gulp | Grunt ` Edition.
3+
<!-- before posting an issue, verify you are running at least Node 6 -->
54

6-
##### Expected Behavior
5+
I am using Pattern Lab Node `vX.X.X` on `Windows | Mac | Linux`, with Node `vX.X.X`, using the `Gulp | Grunt` Edition.
76

7+
##### Expected Behavior
88

99
##### Actual Behavior
1010

11-
1211
##### Steps to Reproduce

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
node_modules/
2+
pattern_exports/
23
.DS_Store
3-
latest-change.txt
4-
patternlab.json
5-
.sass-cache/*
6-
/sass-cache
74
Thumbs.db
8-
source/css/style.css.map
5+
.nyc_output/
6+
.vscode/
97
.idea/
10-
public
8+
test/public
119
!test/patterns/public/.gitkeep
1210
!test/patterns/testDependencyGraph.json
13-
.nyc_output/
14-
.vscode/

.npmignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
test/
2-
.github/
2+
.DS_Store
33
.travis.yml
4+
.nyc_output/
5+
.vscode/
6+
.idea/
7+

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.11.3
1+
8.9.4

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
./package.json
2+
./package-lock.json
3+
./scripts/api.handlebars
4+
./scripts/events.handlebars

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
![Pattern Lab Logo](/patternlab.png 'Pattern Lab Logo')
22

33
[![Build Status](https://travis-ci.org/pattern-lab/patternlab-node.svg?branch=master)](https://travis-ci.org/pattern-lab/patternlab-node) ![current release](https://img.shields.io/npm/v/@pattern-lab/patternlab-node.svg) ![license](https://img.shields.io/github/license/pattern-lab/patternlab-node.svg) [![Coverage Status](https://coveralls.io/repos/github/pattern-lab/patternlab-node/badge.svg?branch=master)](https://coveralls.io/github/pattern-lab/patternlab-node?branch=master) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
4+
[![node (scoped)](https://img.shields.io/node/v/@pattern-lab/patternlab-node.svg)]()
45
[![Join the chat at Gitter](https://badges.gitter.im/pattern-lab/node.svg)](https://gitter.im/pattern-lab/node)
56

67
# Pattern Lab Node Core
@@ -70,13 +71,13 @@ patternlab.serve({
7071

7172
* Read more about [configuration](http://patternlab.io/docs/advanced-config-options.html#node) via `patternlab-config.json`.
7273

73-
* Read more about the rest of [Public API](https://github.com/pattern-lab/patternlab-node/wiki/Public-API), and already implemented for you within [Editions](#editions).
74+
* Read more about the rest of [Public API](./docs), and already implemented for you within [Editions](#editions).
7475

7576
* A full-featured [command line interface](https://github.com/pattern-lab/patternlab-node-cli) is also available courtesy of [@raphaelokon](https://github.com/raphaelokon).
7677

7778
### Events
7879

79-
Many [events](https://github.com/pattern-lab/patternlab-node/wiki/Creating-Plugins#events) are emitted during Pattern Lab operations, originally built to support plugins. Below is a sample, allowing users to be informed of asset or pattern changes.
80+
Many [events](./docs/events.md) are emitted during Pattern Lab operations, originally built to support plugins. Below is a sample, allowing users to be informed of asset or pattern changes.
8081

8182
```javascript
8283
patternlab.serve(...);

0 commit comments

Comments
 (0)