Skip to content

Commit 128b064

Browse files
committed
Publish
- @pattern-lab/cli@0.0.1-beta.2 - @pattern-lab/core@3.0.0-beta.2 - @pattern-lab/development-edition-engine-handlebars@0.0.1-beta.0 - @pattern-lab/engine-react-testing-tree@0.1.1-beta.1 - @pattern-lab/edition-node-gulp@2.0.0-beta.2 - @pattern-lab/edition-node@1.0.0-beta.2 - @pattern-lab/engine-handlebars@2.0.0-beta.1 - @pattern-lab/engine-liquid@1.0.0-beta.1 - @pattern-lab/engine-mustache@2.0.0-beta.1 - @pattern-lab/engine-nunjucks@0.1.4-beta.2 - @pattern-lab/engine-react@0.2.1-beta.1 - @pattern-lab/engine-twig@0.2.1-beta.1 - @pattern-lab/engine-underscore@2.0.0-beta.1 - @pattern-lab/live-server@1.3.3-beta.1 - @pattern-lab/plugin-tab@2.0.3-beta.1 - @pattern-lab/uikit-workshop@1.0.0-beta.1
1 parent fb8b425 commit 128b064

File tree

32 files changed

+260
-49
lines changed

32 files changed

+260
-49
lines changed

packages/cli/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.0.1-beta.2](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/cli@0.0.1-beta.0...@pattern-lab/cli@0.0.1-beta.2) (2019-02-09)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** do not call build before serve ([663d8e1](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/663d8e1)), closes [#917](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/issues/917)
12+
* **cli:** pass watch options cleanly to core ([8bf186b](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/8bf186b))
13+
* **cli:** remove copy-source-files ([64311a1](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/64311a1)), closes [#833](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/issues/833)
14+
* **nvmrc:** bump Node version ([36a917f](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/36a917f))
15+
* manually bump package.json versions of packages published in September but with mismatched package.json versions ([98dfadf](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/98dfadf))
16+
17+
18+
### Features
19+
20+
* **README:** simplify README and add CLI configuration instructions ([ceec673](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/ceec673))
21+
22+
23+
24+
25+
626
<a name="0.0.1-beta.0"></a>
727
## [0.0.1-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/cli@0.0.1-alpha.23...@pattern-lab/cli@0.0.1-beta.0) (2018-09-07)
828

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@pattern-lab/cli",
33
"description": "Command-line interface (CLI) for the @pattern-lab/core.",
4-
"version": "0.0.1-beta.1",
4+
"version": "0.0.1-beta.2",
55
"bin": {
66
"patternlab": "bin/patternlab.js"
77
},
88
"author": {
99
"name": "Raphael Okon"
1010
},
1111
"dependencies": {
12-
"@pattern-lab/core": "^3.0.0-beta.1",
13-
"@pattern-lab/live-server": "^1.3.3-beta.0",
12+
"@pattern-lab/core": "^3.0.0-beta.2",
13+
"@pattern-lab/live-server": "^1.3.3-beta.1",
1414
"archiver": "2.1.1",
1515
"chalk": "2.4.1",
1616
"commander": "2.15.1",

packages/core/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.0.0-beta.2](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/core@3.0.0-beta.0...@pattern-lab/core@3.0.0-beta.2) (2019-02-09)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** pass watch options cleanly to core ([8bf186b](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/8bf186b))
12+
* **docs:** regenerate API documentation ([830c568](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/830c568))
13+
* **patterns:** find all patterns inlcuding pseudo patterns ([d0672f6](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/d0672f6)), closes [#975](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/issues/975)
14+
* manually bump package.json versions of packages published in September but with mismatched package.json versions ([98dfadf](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/98dfadf))
15+
16+
17+
18+
19+
620
<a name="3.0.0-beta.0"></a>
721
# [3.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/core@3.0.0-alpha.16...@pattern-lab/core@3.0.0-beta.0) (2018-09-07)
822

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@pattern-lab/core",
33
"description": "Create atomic design systems with Pattern Lab. This is the core API and orchestrator of the ecosystem.",
4-
"version": "3.0.0-beta.1",
4+
"version": "3.0.0-beta.2",
55
"main": "./src/index.js",
66
"dependencies": {
7-
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
8-
"@pattern-lab/live-server": "^1.3.3-beta.0",
7+
"@pattern-lab/engine-mustache": "^2.0.0-beta.1",
8+
"@pattern-lab/live-server": "^1.3.3-beta.1",
99
"chalk": "1.1.3",
1010
"chokidar": "1.7.0",
1111
"dive": "0.5.0",
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 0.0.1-beta.0 (2019-02-09)
7+
8+
9+
### Bug Fixes
10+
11+
* manually bump package.json versions of packages published in September but with mismatched package.json versions ([98dfadf](https://github.com/pattern-lab/patternlab-node/commit/98dfadf))
12+
13+
14+
### Features
15+
16+
* **package:** add handlebars development edition ([454095d](https://github.com/pattern-lab/patternlab-node/commit/454095d))
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pattern-lab/development-edition-engine-handlebars",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.0.1-beta.0",
55
"description": "The tree of components we use to test, develop and validate the Handlebars engine",
66
"scripts": {
77
"pl:build": "patternlab build --config ./patternlab-config.json",
@@ -10,11 +10,13 @@
1010
"pl:serve": "patternlab serve --config ./patternlab-config.json",
1111
"pl:version": "patternlab --version"
1212
},
13-
"keywords": ["Pattern Lab",
13+
"keywords": [
14+
"Pattern Lab",
1415
"Atomic Web Design",
1516
"Node",
1617
"Handlebars",
17-
"Edition"],
18+
"Edition"
19+
],
1820
"author": "Brian Muenzenmeye",
1921
"license": "MIT",
2022
"repository": {
@@ -25,11 +27,11 @@
2527
"node": ">=10.0"
2628
},
2729
"dependencies": {
28-
"@pattern-lab/cli": "^0.0.1-beta.1",
29-
"@pattern-lab/core": "^3.0.0-beta.1",
30-
"@pattern-lab/engine-handlebars": "^2.0.0-beta.0",
31-
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
30+
"@pattern-lab/cli": "^0.0.1-beta.2",
31+
"@pattern-lab/core": "^3.0.0-beta.2",
32+
"@pattern-lab/engine-handlebars": "^2.0.0-beta.1",
33+
"@pattern-lab/engine-mustache": "^2.0.0-beta.1",
3234
"@pattern-lab/starterkit-mustache-demo": "^5.0.0",
33-
"@pattern-lab/uikit-workshop": "^1.0.0-beta.0"
35+
"@pattern-lab/uikit-workshop": "^1.0.0-beta.1"
3436
}
3537
}

packages/development-edition-engine-react/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [0.1.1-beta.1](https://github.com/pattern-lab/edition-node-gulp/compare/@pattern-lab/engine-react-testing-tree@0.1.1-alpha.4...@pattern-lab/engine-react-testing-tree@0.1.1-beta.1) (2019-02-09)
7+
8+
9+
### Bug Fixes
10+
11+
* manually bump package.json versions of packages published in September but with mismatched package.json versions ([98dfadf](https://github.com/pattern-lab/edition-node-gulp/commit/98dfadf))
12+
13+
14+
15+
16+
617
<a name="0.1.1-beta.0"></a>
718
## [0.1.1-beta.0](https://github.com/pattern-lab/edition-node-gulp/compare/@pattern-lab/engine-react-testing-tree@0.1.1-alpha.4...@pattern-lab/engine-react-testing-tree@0.1.1-beta.0) (2018-09-07)
819

packages/development-edition-engine-react/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@pattern-lab/engine-react-testing-tree",
33
"description": "The tree of components we use to test, develop and validate the React engine",
4-
"version": "0.1.1-beta.0",
4+
"version": "0.1.1-beta.1",
55
"private": true,
66
"main": "gulpfile.js",
77
"dependencies": {
8-
"@pattern-lab/core": "^3.0.0-beta.1",
9-
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
10-
"@pattern-lab/engine-react": "^0.2.1-beta.0",
11-
"@pattern-lab/uikit-workshop": "^1.0.0-beta.0",
8+
"@pattern-lab/core": "^3.0.0-beta.2",
9+
"@pattern-lab/engine-mustache": "^2.0.0-beta.1",
10+
"@pattern-lab/engine-react": "^0.2.1-beta.1",
11+
"@pattern-lab/uikit-workshop": "^1.0.0-beta.1",
1212
"gulp": "3.9.1",
1313
"minimist": "^1.2.0",
1414
"react": "16.2.0"

packages/edition-node-gulp/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.2](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/compare/@pattern-lab/edition-node-gulp@2.0.0-beta.0...@pattern-lab/edition-node-gulp@2.0.0-beta.2) (2019-02-09)
7+
8+
9+
### Bug Fixes
10+
11+
* manually bump package.json versions of packages published in September but with mismatched package.json versions ([98dfadf](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/commit/98dfadf))
12+
* version bump the PL gulp edition package that was also out of sync with the latest version published to NPM ([fb8b425](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/commit/fb8b425))
13+
14+
15+
16+
17+
618
<a name="2.0.0-beta.0"></a>
719
# [2.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/compare/@pattern-lab/edition-node-gulp@2.0.0-alpha.15...@pattern-lab/edition-node-gulp@2.0.0-beta.0) (2018-09-07)
820

packages/edition-node-gulp/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@pattern-lab/edition-node-gulp",
33
"description": "The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.",
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"main": "gulpfile.js",
66
"dependencies": {
7-
"@pattern-lab/cli": "^0.0.1-beta.1",
8-
"@pattern-lab/core": "^3.0.0-beta.1",
9-
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
10-
"@pattern-lab/uikit-workshop": "^1.0.0-beta.0",
7+
"@pattern-lab/cli": "^0.0.1-beta.2",
8+
"@pattern-lab/core": "^3.0.0-beta.2",
9+
"@pattern-lab/engine-mustache": "^2.0.0-beta.1",
10+
"@pattern-lab/uikit-workshop": "^1.0.0-beta.1",
1111
"gulp": "3.9.1",
1212
"minimist": "1.2.0"
1313
},

0 commit comments

Comments
 (0)