Skip to content

Commit d6695d9

Browse files
Merge branch 'dev' into lerna-upgrade
2 parents 8702fb2 + 31b6ac6 commit d6695d9

File tree

29 files changed

+213
-44
lines changed

29 files changed

+213
-44
lines changed

packages/cli/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
<a name="0.0.1-alpha.20"></a>
7+
## [0.0.1-alpha.20](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-05)
8+
9+
10+
### Bug Fixes
11+
12+
* **cli:** change whitespace to spaces per standard ([4556fc7](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/4556fc7))
13+
* **tests:** change test command name similar to live-server until this passes CI ([5c39be1](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/5c39be1))
14+
15+
16+
### Features
17+
18+
* **serve:** change calling method ([3b86a0d](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/3b86a0d))
19+
* **tests:** use lerna run test at the monorepo level ([38a01b1](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/38a01b1))
20+
21+
22+
23+
624
<a name="0.0.1-alpha.19"></a>
725
## [0.0.1-alpha.19](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-05-19)
826

packages/cli/bin/install-edition.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const installEdition = (edition, config) =>
2929
path.resolve('./node_modules', edition, 'gulpfile.js'),
3030
path.resolve(sourceDir, '../', 'gulpfile.js')
3131
);
32+
break;
3233
}
3334
case '@pattern-lab/edition-node': {
3435
const scriptsJSON = {
@@ -40,6 +41,7 @@ const installEdition = (edition, config) =>
4041
};
4142
pkg.scripts = Object.assign({}, pkg.scripts || {}, scriptsJSON);
4243
yield writeJsonAsync('./package.json', pkg, { spaces: 2 });
44+
break;
4345
}
4446
}
4547
return config;

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-alpha.19",
4+
"version": "0.0.1-alpha.20",
55
"bin": {
66
"patternlab": "bin/patternlab.js"
77
},
88
"author": {
99
"name": "Raphael Okon"
1010
},
1111
"dependencies": {
12-
"@pattern-lab/core": "3.0.0-alpha.13",
13-
"@pattern-lab/live-server": "1.3.3-alpha.3",
12+
"@pattern-lab/core": "3.0.0-alpha.14",
13+
"@pattern-lab/live-server": "1.3.3-alpha.4",
1414
"archiver": "2.1.1",
1515
"chalk": "2.4.1",
1616
"commander": "2.15.1",

packages/core/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
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+
<a name="3.0.0-alpha.14"></a>
7+
# [3.0.0-alpha.14](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-05)
8+
9+
10+
### Bug Fixes
11+
12+
* **core:** rename serverModule import to avoid conflict with CLI ([f3170e7](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/f3170e7))
13+
* **server:** remove setInterval hack ([a76e4a2](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/a76e4a2))
14+
* **uikits:** fix generation of view all pages within uikits ([7d6bdce](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/7d6bdce))
15+
* **viewall:** fix viewall generation ([543558a](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/543558a))
16+
* **watch:** wire up serve and watch listeners correctly ([04cd18e](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/04cd18e))
17+
18+
19+
### Features
20+
21+
* **events:** add PATTERNLAB_BUILD_END event and rename BUILD_START ([5b7bfa3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/5b7bfa3))
22+
* **help:** remove help. API is now documented ([2aef3a1](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/2aef3a1))
23+
* **server:** beginning of refator ([a3d65c3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/a3d65c3))
24+
* **server:** continue server refactor ([8f6cd91](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/8f6cd91))
25+
* **watches:** add additional assets to ignore ([18e74c2](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/18e74c2))
26+
27+
28+
29+
630
<a name="3.0.0-alpha.13"></a>
731
# [3.0.0-alpha.13](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-05-04)
832

packages/core/package.json

Lines changed: 4 additions & 4 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-alpha.13",
4+
"version": "3.0.0-alpha.14",
55
"main": "./src/index.js",
66
"dependencies": {
7-
"@pattern-lab/engine-mustache": "2.0.0-alpha.6",
8-
"@pattern-lab/live-server": "1.3.3-alpha.3",
7+
"@pattern-lab/engine-mustache": "2.0.0-alpha.7",
8+
"@pattern-lab/live-server": "1.3.3-alpha.4",
99
"chalk": "1.1.3",
1010
"chokidar": "1.7.0",
1111
"dive": "0.5.0",
@@ -14,7 +14,7 @@
1414
"graphlib": "2.1.1",
1515
"js-beautify": "1.6.3",
1616
"js-yaml": "3.6.1",
17-
"lodash": "~4.17.5",
17+
"lodash": "4.17.5",
1818
"markdown-it": "6.0.1",
1919
"node-fetch": "1.6.0",
2020
"recursive-copy": "2.0.8",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
<a name="0.1.1-alpha.2"></a>
7+
## [0.1.1-alpha.2](https://github.com/pattern-lab/edition-node-gulp/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-05)
8+
9+
10+
11+
12+
**Note:** Version bump only for package @pattern-lab/engine-react-testing-tree
13+
614
<a name="0.1.1-alpha.1"></a>
715
## [0.1.1-alpha.1](https://github.com/pattern-lab/edition-node-gulp/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-05-04)
816

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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-alpha.1",
4+
"version": "0.1.1-alpha.2",
55
"private": true,
66
"main": "gulpfile.js",
77
"dependencies": {
8-
"@pattern-lab/core": "3.0.0-alpha.13",
9-
"@pattern-lab/engine-mustache": "2.0.0-alpha.6",
10-
"@pattern-lab/engine-react": "0.2.1-alpha.3",
11-
"@pattern-lab/uikit-workshop": "1.0.0-alpha.5",
8+
"@pattern-lab/core": "3.0.0-alpha.14",
9+
"@pattern-lab/engine-mustache": "2.0.0-alpha.7",
10+
"@pattern-lab/engine-react": "0.2.1-alpha.4",
11+
"@pattern-lab/uikit-workshop": "1.0.0-alpha.6",
1212
"gulp": "3.9.1",
13-
"minimist": "1.2.0",
13+
"minimist": "^.2.0",
1414
"react": "16.2.0"
1515
},
1616
"keywords": [

packages/edition-node-gulp/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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+
<a name="2.0.0-alpha.12"></a>
7+
# [2.0.0-alpha.12](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-05)
8+
9+
10+
### Bug Fixes
11+
12+
* **gulp:** remove help command ([71575db](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/commit/71575db))
13+
14+
15+
### Features
16+
17+
* **serve:** change calling method ([f47217a](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/commit/f47217a))
18+
19+
20+
21+
622
<a name="2.0.0-alpha.11"></a>
723
# [2.0.0-alpha.11](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-05-19)
824

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-alpha.11",
4+
"version": "2.0.0-alpha.12",
55
"main": "gulpfile.js",
66
"dependencies": {
7-
"@pattern-lab/cli": "0.0.1-alpha.19",
8-
"@pattern-lab/core": "3.0.0-alpha.13",
9-
"@pattern-lab/engine-mustache": "2.0.0-alpha.6",
10-
"@pattern-lab/uikit-workshop": "1.0.0-alpha.5",
7+
"@pattern-lab/cli": "0.0.1-alpha.20",
8+
"@pattern-lab/core": "3.0.0-alpha.14",
9+
"@pattern-lab/engine-mustache": "2.0.0-alpha.7",
10+
"@pattern-lab/uikit-workshop": "1.0.0-alpha.6",
1111
"gulp": "3.9.1",
1212
"minimist": "1.2.0"
1313
},

packages/edition-node/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
<a name="1.0.0-alpha.10"></a>
7+
# [1.0.0-alpha.10](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-05)
8+
9+
10+
11+
12+
**Note:** Version bump only for package @pattern-lab/edition-node
13+
614
<a name="1.0.0-alpha.9"></a>
715
# [1.0.0-alpha.9](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-05-19)
816

0 commit comments

Comments
 (0)