Skip to content

Commit 704188f

Browse files
Merge pull request #941 from pattern-lab/development-edition-handlebars
Development edition handlebars
2 parents 02ba847 + 454095d commit 704188f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+544
-35
lines changed

packages/cli/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+
<a name="0.0.1-beta.0"></a>
7+
## [0.0.1-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-09-07)
8+
9+
10+
### Bug Fixes
11+
12+
* **cli:** set initialized to false during plugin installation ([88cce3f](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/88cce3f))
13+
* **cli:** support scoped plugins ([4ae13ce](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/4ae13ce))
14+
* **package:** update tap dependency ([2b70ff4](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/2b70ff4))
15+
16+
17+
18+
19+
620
<a name="0.0.1-alpha.23"></a>
721

822
## [0.0.1-alpha.23](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-09)

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.23",
4+
"version": "0.0.1-beta.0",
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.16",
13-
"@pattern-lab/live-server": "^1.3.3-alpha.6",
12+
"@pattern-lab/core": "^3.0.0-beta.0",
13+
"@pattern-lab/live-server": "^1.3.3-beta.0",
1414
"archiver": "2.1.1",
1515
"chalk": "2.4.1",
1616
"commander": "2.15.1",

packages/core/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
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-beta.0"></a>
7+
# [3.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-09-07)
8+
9+
10+
### Bug Fixes
11+
12+
* **docs:** update event info with tab example ([0f227a3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/0f227a3))
13+
* **package:** Allow .json extension on annotations file (issue [#836](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/issues/836)) ([b92e62b](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/b92e62b))
14+
* **package:** update tap dependency ([2b70ff4](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/2b70ff4))
15+
* **plugins:** support scoped packages ([44f0f8e](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/44f0f8e))
16+
17+
18+
### Features
19+
20+
* **API:** remove reliance on patternlab object during plugin install ([0850fd6](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/0850fd6))
21+
* **core:** remove plugin install / disable / enable logic ([5a58824](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/5a58824)), closes [#872](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/issues/872)
22+
23+
24+
25+
26+
627
<a name="3.0.0-alpha.16"></a>
728

829
# [3.0.0-alpha.16](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/[email protected]...@pattern-lab/[email protected]) (2018-07-06)

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-alpha.16",
4+
"version": "3.0.0-beta.0",
55
"main": "./src/index.js",
66
"dependencies": {
7-
"@pattern-lab/engine-mustache": "^2.0.0-alpha.8",
8-
"@pattern-lab/live-server": "^1.3.3-alpha.6",
7+
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
8+
"@pattern-lab/live-server": "^1.3.3-beta.0",
99
"chalk": "1.1.3",
1010
"chokidar": "1.7.0",
1111
"dive": "0.5.0",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules/
2+
.DS_Store
3+
patternlab.json
4+
.sass-cache/*
5+
/sass-cache
6+
Thumbs.db
7+
.idea/
8+
public
9+
dependencyGraph.json
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package-lock=false
2+
save-exact=true
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
![Pattern Lab Logo](/patternlab.png "Pattern Lab Logo")
2+
3+
# Pattern Lab Node - Development Edition Engine Handlebars
4+
5+
_here be dragons_
6+
7+
This Development Edition is a variant of [Edition Node](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node) for convience purposes only, loaded with the Handlebars Engine. The goals of this Development Edition are two-fold:
8+
9+
* Develop the [Handlebars Engine](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-handlebars)
10+
* Build and test against Handlebars pattern tree
11+
12+
> Development Editions of Pattern Lab provide the ability to work on and commit changes to select packages within the overall Pattern Lab [ecosystem](http://patternlab.io/docs/advanced-ecosystem-overview.html). This Edition is NOT stable.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "@pattern-lab/development-edition-engine-handlebars",
3+
"private": true,
4+
"version": "0.0.0",
5+
"description": "The tree of components we use to test, develop and validate the Handlebars engine",
6+
"scripts": {
7+
"pl:build": "patternlab build --config ./patternlab-config.json",
8+
"pl:help": "patternlab --help",
9+
"pl:install": "patternlab install --config ./patternlab-config.json",
10+
"pl:serve": "patternlab serve --config ./patternlab-config.json",
11+
"pl:version": "patternlab --version"
12+
},
13+
"keywords": ["Pattern Lab",
14+
"Atomic Web Design",
15+
"Node",
16+
"Handlebars",
17+
"Edition"],
18+
"author": "Brian Muenzenmeye",
19+
"license": "MIT",
20+
"repository": {
21+
"type": "git",
22+
"url": "git://github.com/pattern-lab/patternlab-node.git"
23+
},
24+
"dependencies": {
25+
"@pattern-lab/cli": "^0.0.1-beta.0",
26+
"@pattern-lab/core": "^3.0.0-beta.0",
27+
"@pattern-lab/engine-handlebars": "^2.0.0-beta.0",
28+
"@pattern-lab/engine-mustache": "^2.0.0-beta.0",
29+
"@pattern-lab/starterkit-mustache-demo": "^5.0.0",
30+
"@pattern-lab/uikit-workshop": "^1.0.0-beta.0"
31+
}
32+
}
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"cacheBust": true,
3+
"cleanPublic": true,
4+
"defaultPattern": "all",
5+
"defaultShowPatternInfo": false,
6+
"ishControlsHide": {
7+
"s": true,
8+
"m": true,
9+
"l": true,
10+
"full": false,
11+
"random": true,
12+
"disco": true,
13+
"hay": true,
14+
"mqs": true,
15+
"find": true,
16+
"views-all": false,
17+
"views-annotations": false,
18+
"views-code": false,
19+
"views-new": false,
20+
"tools-all": false,
21+
"tools-docs": false
22+
},
23+
"ishViewportRange": {
24+
"s": [240, 500],
25+
"m": [500, 800],
26+
"l": [800, 2600]
27+
},
28+
"logLevel": "info",
29+
"outputFileSuffixes": {
30+
"rendered": ".rendered",
31+
"rawTemplate": "",
32+
"markupOnly": ".markup-only"
33+
},
34+
"paths": {
35+
"source": {
36+
"root": "source/",
37+
"patterns": "source/_patterns/",
38+
"data": "source/_data/",
39+
"meta": "source/_meta/",
40+
"annotations": "source/_annotations/",
41+
"styleguide": "dist/",
42+
"patternlabFiles": {
43+
"general-header": "views/partials/general-header.mustache",
44+
"general-footer": "views/partials/general-footer.mustache",
45+
"patternSection": "views/partials/patternSection.mustache",
46+
"patternSectionSubtype": "views/partials/patternSectionSubtype.mustache",
47+
"viewall": "views/viewall.mustache"
48+
},
49+
"js": "source/js",
50+
"images": "source/images",
51+
"fonts": "source/fonts",
52+
"css": "source/css"
53+
},
54+
"public": {
55+
"root": "public/",
56+
"patterns": "public/patterns/",
57+
"data": "public/styleguide/data/",
58+
"annotations": "public/annotations/",
59+
"styleguide": "public/styleguide/",
60+
"js": "public/js",
61+
"images": "public/images",
62+
"fonts": "public/fonts",
63+
"css": "public/css"
64+
}
65+
},
66+
"patternExtension": "hbs",
67+
"patternStateCascade": ["inprogress", "inreview", "complete"],
68+
"patternExportDirectory": "pattern_exports",
69+
"patternExportPatternPartials": [],
70+
"serverOptions": {
71+
"wait": 1000
72+
},
73+
"starterkitSubDir": "dist",
74+
"styleGuideExcludes": [],
75+
"theme": {
76+
"color": "dark",
77+
"density": "compact",
78+
"layout": "horizontal"
79+
},
80+
"uikits": [
81+
{
82+
"name": "uikit-workshop",
83+
"outputDir": "",
84+
"enabled": true,
85+
"excludedPatternStates": [],
86+
"excludedTags": []
87+
}
88+
]
89+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"comments": []
3+
}

0 commit comments

Comments
 (0)