Skip to content

Commit 936be65

Browse files
authored
Merge branch 'dev' into feature/fix-directory-naming
2 parents 8c0fa90 + aea1c7f commit 936be65

File tree

12 files changed

+79
-31
lines changed

12 files changed

+79
-31
lines changed

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

Lines changed: 2 additions & 2 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.1.2",
4+
"version": "0.1.3",
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",
@@ -32,6 +32,6 @@
3232
"@pattern-lab/engine-handlebars": "^2.0.1",
3333
"@pattern-lab/engine-mustache": "^2.0.1-alpha.0",
3434
"@pattern-lab/starterkit-mustache-demo": "^5.0.0",
35-
"@pattern-lab/uikit-workshop": "^1.0.3"
35+
"@pattern-lab/uikit-workshop": "^1.0.4"
3636
}
3737
}

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

Lines changed: 2 additions & 2 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.4",
4+
"version": "0.1.5",
55
"private": true,
66
"main": "gulpfile.js",
77
"dependencies": {
88
"@pattern-lab/core": "^3.0.3",
99
"@pattern-lab/engine-mustache": "^2.0.1-alpha.0",
1010
"@pattern-lab/engine-react": "^0.2.1-beta.1",
11-
"@pattern-lab/uikit-workshop": "^1.0.3",
11+
"@pattern-lab/uikit-workshop": "^1.0.4",
1212
"gulp": "3.9.1",
1313
"minimist": "^1.2.0",
1414
"react": "16.2.0"

packages/edition-node-gulp/package.json

Lines changed: 2 additions & 2 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.5",
4+
"version": "2.0.6",
55
"main": "gulpfile.js",
66
"dependencies": {
77
"@pattern-lab/cli": "^1.0.1",
88
"@pattern-lab/core": "^3.0.3",
99
"@pattern-lab/engine-mustache": "^2.0.1-alpha.0",
10-
"@pattern-lab/uikit-workshop": "^1.0.3",
10+
"@pattern-lab/uikit-workshop": "^1.0.4",
1111
"gulp": "3.9.1",
1212
"minimist": "1.2.0"
1313
},

packages/edition-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@pattern-lab/edition-node",
33
"description": "A pure wrapper around patternlab-node core, the default pattern engine, and supporting frontend assets.",
4-
"version": "2.0.2",
4+
"version": "2.0.3",
55
"main": "patternlab-config.json",
66
"dependencies": {
77
"@pattern-lab/cli": "^1.0.1",
88
"@pattern-lab/core": "^3.0.3",
99
"@pattern-lab/engine-handlebars": "^2.0.1",
10-
"@pattern-lab/uikit-workshop": "^1.0.3"
10+
"@pattern-lab/uikit-workshop": "^1.0.4"
1111
},
1212
"keywords": [
1313
"Pattern Lab",

packages/edition-twig/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pattern-lab/edition-twig",
3-
"version": "3.1.4",
3+
"version": "3.1.5",
44
"description": "Pattern Lab node with Twig PHP Engine",
55
"author": {
66
"name": "Evan Lovely",
@@ -25,7 +25,7 @@
2525
"@pattern-lab/cli": "^1.0.1",
2626
"@pattern-lab/core": "^3.0.3",
2727
"@pattern-lab/engine-twig-php": "^3.0.3",
28-
"@pattern-lab/uikit-workshop": "^1.0.3"
28+
"@pattern-lab/uikit-workshop": "^1.0.4"
2929
},
3030
"engines": {
3131
"node": ">=6.0"

packages/edition-twig/patternlab-config.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,41 @@
88
"paths": [
99
"./node_modules/@pattern-lab/uikit-workshop/views-twig"
1010
]
11+
},
12+
{
13+
"id": "atoms",
14+
"recursive": true,
15+
"paths": [
16+
"./source/_patterns/00-atoms"
17+
]
18+
},
19+
{
20+
"id": "molecules",
21+
"recursive": true,
22+
"paths": [
23+
"./source/_patterns/01-molecules"
24+
]
25+
},
26+
{
27+
"id": "organisms",
28+
"recursive": true,
29+
"paths": [
30+
"./source/_patterns/02-organisms"
31+
]
32+
},
33+
{
34+
"id": "templates",
35+
"recursive": true,
36+
"paths": [
37+
"./source/_patterns/03-templates"
38+
]
39+
},
40+
{
41+
"id": "pages",
42+
"recursive": true,
43+
"paths": [
44+
"./source/_patterns/04-pages"
45+
]
1146
}
1247
],
1348
"alterTwigEnv": [

packages/uikit-workshop/dist/styleguide/js/patternlab-viewer.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/uikit-workshop/dist/styleguide/js/pl-modal-viewer-chunk-0634ccab5a0ead34e762.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/uikit-workshop/dist/styleguide/js/pl-modal-viewer-chunk-9bbdeb5a6429fb975bf6.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/uikit-workshop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pattern-lab/uikit-workshop",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Front-end assets and templates for the default Pattern Lab workshop view",
55
"main": "gulpfile.js",
66
"scripts": {

0 commit comments

Comments
 (0)