diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
index a9f8b89bc..ccf151242 100644
--- a/packages/cli/CHANGELOG.md
+++ b/packages/cli/CHANGELOG.md
@@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [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)
+
+
+### Bug Fixes
+
+* **cli:** set initialized to false during plugin installation ([88cce3f](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/88cce3f))
+* **cli:** support scoped plugins ([4ae13ce](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/4ae13ce))
+* **package:** update tap dependency ([2b70ff4](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/commit/2b70ff4))
+
+
+
+
+
## [0.0.1-alpha.23](https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli/compare/@pattern-lab/cli@0.0.1-alpha.22...@pattern-lab/cli@0.0.1-alpha.23) (2018-07-09)
diff --git a/packages/cli/package.json b/packages/cli/package.json
index b92ba64b4..88c48fea3 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/cli",
"description": "Command-line interface (CLI) for the @pattern-lab/core.",
- "version": "0.0.1-alpha.23",
+ "version": "0.0.1-beta.0",
"bin": {
"patternlab": "bin/patternlab.js"
},
@@ -9,8 +9,8 @@
"name": "Raphael Okon"
},
"dependencies": {
- "@pattern-lab/core": "^3.0.0-alpha.16",
- "@pattern-lab/live-server": "^1.3.3-alpha.6",
+ "@pattern-lab/core": "^3.0.0-beta.0",
+ "@pattern-lab/live-server": "^1.3.3-beta.0",
"archiver": "2.1.1",
"chalk": "2.4.1",
"commander": "2.15.1",
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index b8aae92b1..cab35bc28 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [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)
+
+
+### Bug Fixes
+
+* **docs:** update event info with tab example ([0f227a3](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/0f227a3))
+* **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))
+* **package:** update tap dependency ([2b70ff4](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/2b70ff4))
+* **plugins:** support scoped packages ([44f0f8e](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/44f0f8e))
+
+
+### Features
+
+* **API:** remove reliance on patternlab object during plugin install ([0850fd6](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/commit/0850fd6))
+* **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)
+
+
+
+
+
# [3.0.0-alpha.16](https://github.com/pattern-lab/patternlab-node/tree/master/packages/core/compare/@pattern-lab/core@3.0.0-alpha.15...@pattern-lab/core@3.0.0-alpha.16) (2018-07-06)
diff --git a/packages/core/package.json b/packages/core/package.json
index d0e5983df..aa8449531 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,11 +1,11 @@
{
"name": "@pattern-lab/core",
"description": "Create atomic design systems with Pattern Lab. This is the core API and orchestrator of the ecosystem.",
- "version": "3.0.0-alpha.16",
+ "version": "3.0.0-beta.0",
"main": "./src/index.js",
"dependencies": {
- "@pattern-lab/engine-mustache": "^2.0.0-alpha.8",
- "@pattern-lab/live-server": "^1.3.3-alpha.6",
+ "@pattern-lab/engine-mustache": "^2.0.0-beta.0",
+ "@pattern-lab/live-server": "^1.3.3-beta.0",
"chalk": "1.1.3",
"chokidar": "1.7.0",
"dive": "0.5.0",
diff --git a/packages/development-edition-engine-handlebars/.gitignore b/packages/development-edition-engine-handlebars/.gitignore
new file mode 100644
index 000000000..0679bd2b5
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/.gitignore
@@ -0,0 +1,9 @@
+node_modules/
+.DS_Store
+patternlab.json
+.sass-cache/*
+/sass-cache
+Thumbs.db
+.idea/
+public
+dependencyGraph.json
diff --git a/packages/development-edition-engine-handlebars/.npmrc b/packages/development-edition-engine-handlebars/.npmrc
new file mode 100644
index 000000000..ce73f58bf
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/.npmrc
@@ -0,0 +1,2 @@
+package-lock=false
+save-exact=true
diff --git a/packages/development-edition-engine-handlebars/README.md b/packages/development-edition-engine-handlebars/README.md
new file mode 100644
index 000000000..722416c2a
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/README.md
@@ -0,0 +1,12 @@
+
+
+# Pattern Lab Node - Development Edition Engine Handlebars
+
+_here be dragons_
+
+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:
+
+* Develop the [Handlebars Engine](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-handlebars)
+* Build and test against Handlebars pattern tree
+
+> 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.
diff --git a/packages/development-edition-engine-handlebars/package.json b/packages/development-edition-engine-handlebars/package.json
new file mode 100644
index 000000000..5b9ba1312
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "@pattern-lab/development-edition-engine-handlebars",
+ "private": true,
+ "version": "0.0.0",
+ "description": "The tree of components we use to test, develop and validate the Handlebars engine",
+ "scripts": {
+ "pl:build": "patternlab build --config ./patternlab-config.json",
+ "pl:help": "patternlab --help",
+ "pl:install": "patternlab install --config ./patternlab-config.json",
+ "pl:serve": "patternlab serve --config ./patternlab-config.json",
+ "pl:version": "patternlab --version"
+ },
+ "keywords": ["Pattern Lab",
+ "Atomic Web Design",
+ "Node",
+ "Handlebars",
+ "Edition"],
+ "author": "Brian Muenzenmeye",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/pattern-lab/patternlab-node.git"
+ },
+ "dependencies": {
+ "@pattern-lab/cli": "^0.0.1-beta.0",
+ "@pattern-lab/core": "^3.0.0-beta.0",
+ "@pattern-lab/engine-handlebars": "^2.0.0-beta.0",
+ "@pattern-lab/engine-mustache": "^2.0.0-beta.0",
+ "@pattern-lab/starterkit-mustache-demo": "^5.0.0",
+ "@pattern-lab/uikit-workshop": "^1.0.0-beta.0"
+ }
+}
diff --git a/packages/development-edition-engine-handlebars/patternlab-config.json b/packages/development-edition-engine-handlebars/patternlab-config.json
new file mode 100644
index 000000000..dae655991
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/patternlab-config.json
@@ -0,0 +1,89 @@
+{
+ "cacheBust": true,
+ "cleanPublic": true,
+ "defaultPattern": "all",
+ "defaultShowPatternInfo": false,
+ "ishControlsHide": {
+ "s": true,
+ "m": true,
+ "l": true,
+ "full": false,
+ "random": true,
+ "disco": true,
+ "hay": true,
+ "mqs": true,
+ "find": true,
+ "views-all": false,
+ "views-annotations": false,
+ "views-code": false,
+ "views-new": false,
+ "tools-all": false,
+ "tools-docs": false
+ },
+ "ishViewportRange": {
+ "s": [240, 500],
+ "m": [500, 800],
+ "l": [800, 2600]
+ },
+ "logLevel": "info",
+ "outputFileSuffixes": {
+ "rendered": ".rendered",
+ "rawTemplate": "",
+ "markupOnly": ".markup-only"
+ },
+ "paths": {
+ "source": {
+ "root": "source/",
+ "patterns": "source/_patterns/",
+ "data": "source/_data/",
+ "meta": "source/_meta/",
+ "annotations": "source/_annotations/",
+ "styleguide": "dist/",
+ "patternlabFiles": {
+ "general-header": "views/partials/general-header.mustache",
+ "general-footer": "views/partials/general-footer.mustache",
+ "patternSection": "views/partials/patternSection.mustache",
+ "patternSectionSubtype": "views/partials/patternSectionSubtype.mustache",
+ "viewall": "views/viewall.mustache"
+ },
+ "js": "source/js",
+ "images": "source/images",
+ "fonts": "source/fonts",
+ "css": "source/css"
+ },
+ "public": {
+ "root": "public/",
+ "patterns": "public/patterns/",
+ "data": "public/styleguide/data/",
+ "annotations": "public/annotations/",
+ "styleguide": "public/styleguide/",
+ "js": "public/js",
+ "images": "public/images",
+ "fonts": "public/fonts",
+ "css": "public/css"
+ }
+ },
+ "patternExtension": "hbs",
+ "patternStateCascade": ["inprogress", "inreview", "complete"],
+ "patternExportDirectory": "pattern_exports",
+ "patternExportPatternPartials": [],
+ "serverOptions": {
+ "wait": 1000
+ },
+ "starterkitSubDir": "dist",
+ "styleGuideExcludes": [],
+ "theme": {
+ "color": "dark",
+ "density": "compact",
+ "layout": "horizontal"
+ },
+ "uikits": [
+ {
+ "name": "uikit-workshop",
+ "outputDir": "",
+ "enabled": true,
+ "excludedPatternStates": [],
+ "excludedTags": []
+ }
+ ]
+}
diff --git a/packages/development-edition-engine-handlebars/source/_annotations/annotations.json b/packages/development-edition-engine-handlebars/source/_annotations/annotations.json
new file mode 100644
index 000000000..a0d0268f8
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_annotations/annotations.json
@@ -0,0 +1,3 @@
+{
+ "comments": []
+}
diff --git a/packages/development-edition-engine-handlebars/source/_data/data.json b/packages/development-edition-engine-handlebars/source/_data/data.json
new file mode 100644
index 000000000..250376db0
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_data/data.json
@@ -0,0 +1,34 @@
+{
+ "version": "2",
+ "swatches": [
+ {
+ "color": {
+ "hex": "#031636",
+ "cmyk": "94 59 0 79"
+ },
+ "label": "dark blue"
+ },
+ {
+ "color": {
+ "hex": "#0D80F0",
+ "cmyk": "95 47 0 6"
+ },
+ "label": "light blue"
+ },
+ {
+ "color": {
+ "hex": "#4c4c4c",
+ "cmyk": "0 0 0 70"
+ },
+ "label": "dark grey"
+ },
+ {
+ "color": {
+ "hex": "#b2b2b2",
+ "cmyk": "0 0 0 30"
+ },
+ "label": "light grey",
+ "inverted": true
+ }
+ ]
+}
diff --git a/packages/development-edition-engine-handlebars/source/_data/listitems.json b/packages/development-edition-engine-handlebars/source/_data/listitems.json
new file mode 100644
index 000000000..c35d1076d
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_data/listitems.json
@@ -0,0 +1,6 @@
+{
+ "1": {},
+ "2": {},
+ "3": {},
+ "4": {}
+}
diff --git a/packages/development-edition-engine-handlebars/source/_meta/README.md b/packages/development-edition-engine-handlebars/source/_meta/README.md
new file mode 100644
index 000000000..c6c8c3b8e
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_meta/README.md
@@ -0,0 +1,5 @@
+This is the default location to place meta files, otherwise known a pattern's header and footer.
+
+Pattern Lab builds each pattern while prepending and appending the header and footer. Read more about [pattern headers and footers](http://patternlab.io/docs/pattern-header-footer.html).
+
+If you wish to rename this directory, make sure you update the `paths.source.meta` property within `patternlab-config.json`.
diff --git a/packages/development-edition-engine-handlebars/source/_meta/_00-head.hbs b/packages/development-edition-engine-handlebars/source/_meta/_00-head.hbs
new file mode 100644
index 000000000..9058b6521
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_meta/_00-head.hbs
@@ -0,0 +1,19 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+ {{{ patternLabHead }}}
+
+
+
+
+
diff --git a/packages/development-edition-engine-handlebars/source/_meta/_00-head.mustache b/packages/development-edition-engine-handlebars/source/_meta/_00-head.mustache
new file mode 100644
index 000000000..45ce3bb7d
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_meta/_00-head.mustache
@@ -0,0 +1,17 @@
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+ {{{ patternLabHead }}}
+
+
+
+
+
diff --git a/packages/development-edition-engine-handlebars/source/_meta/_01-foot.hbs b/packages/development-edition-engine-handlebars/source/_meta/_01-foot.hbs
new file mode 100644
index 000000000..797d9418d
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_meta/_01-foot.hbs
@@ -0,0 +1,6 @@
+
+
+{{{ patternLabFoot }}}
+
+
+
diff --git a/packages/development-edition-engine-handlebars/source/_meta/_01-foot.mustache b/packages/development-edition-engine-handlebars/source/_meta/_01-foot.mustache
new file mode 100644
index 000000000..797d9418d
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_meta/_01-foot.mustache
@@ -0,0 +1,6 @@
+
+
+{{{ patternLabFoot }}}
+
+
+
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.hbs b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.hbs
new file mode 100644
index 000000000..804dcbfe5
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.hbs
@@ -0,0 +1,5 @@
+
+ {{label}}
+ hex: {{color.hex}}
+ cmyk: {{color.cmyk}}
+
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.json b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.json
new file mode 100644
index 000000000..15d3872ba
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.json
@@ -0,0 +1,7 @@
+{
+ "color": {
+ "hex": "#031636",
+ "cmyk": "94 59 0 79"
+ },
+ "label": "dark blue"
+}
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.md b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.md
new file mode 100644
index 000000000..3f2d7ea0f
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/atoms/swatches/swatch.md
@@ -0,0 +1 @@
+Pattern Lab Tip: Note the use of the [built-in handlebars helper, `if`](https://handlebarsjs.com/builtin_helpers.html) and the ability to address data using dot notation [paths](https://handlebarsjs.com/#paths).
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/atoms/type.md b/packages/development-edition-engine-handlebars/source/_patterns/atoms/type.md
new file mode 100644
index 000000000..245bc9dcd
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/atoms/type.md
@@ -0,0 +1 @@
+Type
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/atoms/type/annotation.hbs b/packages/development-edition-engine-handlebars/source/_patterns/atoms/type/annotation.hbs
new file mode 100644
index 000000000..7d556dbab
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/atoms/type/annotation.hbs
@@ -0,0 +1 @@
+{{#if annotation}}{{annotation}}{{else}}v{{version}}{{/if}}
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants.md b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants.md
new file mode 100644
index 000000000..345e6aef7
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants.md
@@ -0,0 +1 @@
+Test
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.hbs b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.hbs
new file mode 100644
index 000000000..9cb654819
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.hbs
@@ -0,0 +1,8 @@
+
+ - hi12
+ {{> atoms-annotation annotation="possible colors"}}
+
+ {{#each swatches}}
+ - {{> atoms-swatch }}
+ {{/each}}
+
diff --git a/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.md b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.md
new file mode 100644
index 000000000..131286757
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/_patterns/molecules/variants/swatches.md
@@ -0,0 +1 @@
+Pattern Lab Tip: Note the use of the [built-in handlebars helper, `each`](https://handlebarsjs.com/builtin_helpers.html).
diff --git a/packages/development-edition-engine-handlebars/source/css/pattern-scaffolding.css b/packages/development-edition-engine-handlebars/source/css/pattern-scaffolding.css
new file mode 100644
index 000000000..f6c2da29d
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/css/pattern-scaffolding.css
@@ -0,0 +1,52 @@
+/**
+ * This stylesheet is for styles you want to include only when displaying demo
+ * styles for grids, animations, color swatches, etc.
+ * These styles will not be your production CSS.
+ */
+
+#sg-patterns {
+ -webkit-box-sizing: border-box !important;
+ box-sizing: border-box !important;
+ max-width: 100%;
+ padding: 0 0.5em;
+}
+
+.sg-colors {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ list-style: none !important;
+ padding: 0 !important;
+ margin: 0 !important;
+}
+.sg-colors li {
+ -webkit-box-flex: 1;
+ -ms-flex: auto;
+ flex: auto;
+ margin: 0 0 0.5em 0.5em;
+ width: 14em;
+}
+
+.sg-swatch {
+ display: flex;
+ flex-direction: column;
+ height: 6em;
+ margin-bottom: 0.3em;
+ padding: 0.5rem;
+}
+
+.sg-label {
+ font-size: 90%;
+ line-height: 1;
+ color: white;
+}
+
+.sg-label__inverted {
+ color: black;
+}
+
+.sg-label__top {
+ margin-bottom: auto;
+}
diff --git a/packages/development-edition-engine-handlebars/source/css/style.css b/packages/development-edition-engine-handlebars/source/css/style.css
new file mode 100644
index 000000000..7f25a7fe6
--- /dev/null
+++ b/packages/development-edition-engine-handlebars/source/css/style.css
@@ -0,0 +1,3 @@
+.annotation {
+ color: #b2b2b2;
+}
diff --git a/packages/development-edition-engine-handlebars/source/favicon.ico b/packages/development-edition-engine-handlebars/source/favicon.ico
new file mode 100644
index 000000000..eee4aa78f
Binary files /dev/null and b/packages/development-edition-engine-handlebars/source/favicon.ico differ
diff --git a/packages/development-edition-engine-react/CHANGELOG.md b/packages/development-edition-engine-react/CHANGELOG.md
index 3143802a6..c917c719a 100644
--- a/packages/development-edition-engine-react/CHANGELOG.md
+++ b/packages/development-edition-engine-react/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [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)
+
+**Note:** Version bump only for package @pattern-lab/engine-react-testing-tree
+
+
+
+
+
## [0.1.1-alpha.4](https://github.com/pattern-lab/edition-node-gulp/compare/@pattern-lab/engine-react-testing-tree@0.1.1-alpha.3...@pattern-lab/engine-react-testing-tree@0.1.1-alpha.4) (2018-07-06)
diff --git a/packages/development-edition-engine-react/package.json b/packages/development-edition-engine-react/package.json
index 8fc886599..e6c00b7e2 100644
--- a/packages/development-edition-engine-react/package.json
+++ b/packages/development-edition-engine-react/package.json
@@ -1,14 +1,14 @@
{
"name": "@pattern-lab/engine-react-testing-tree",
"description": "The tree of components we use to test, develop and validate the React engine",
- "version": "0.1.1-alpha.4",
+ "version": "0.1.1-beta.0",
"private": true,
"main": "gulpfile.js",
"dependencies": {
- "@pattern-lab/core": "^3.0.0-alpha.16",
- "@pattern-lab/engine-mustache": "^2.0.0-alpha.8",
- "@pattern-lab/engine-react": "^0.2.1-alpha.5",
- "@pattern-lab/uikit-workshop": "^1.0.0-alpha.7",
+ "@pattern-lab/core": "^3.0.0-beta.0",
+ "@pattern-lab/engine-mustache": "^2.0.0-beta.0",
+ "@pattern-lab/engine-react": "^0.2.1-beta.0",
+ "@pattern-lab/uikit-workshop": "^1.0.0-beta.0",
"gulp": "3.9.1",
"minimist": "^1.2.0",
"react": "16.2.0"
diff --git a/packages/edition-node-gulp/CHANGELOG.md b/packages/edition-node-gulp/CHANGELOG.md
index 70dfc5272..a5c472ad8 100644
--- a/packages/edition-node-gulp/CHANGELOG.md
+++ b/packages/edition-node-gulp/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [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)
+
+**Note:** Version bump only for package @pattern-lab/edition-node-gulp
+
+
+
+
+
# [2.0.0-alpha.15](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node-gulp/compare/@pattern-lab/edition-node-gulp@2.0.0-alpha.14...@pattern-lab/edition-node-gulp@2.0.0-alpha.15) (2018-07-09)
diff --git a/packages/edition-node-gulp/package.json b/packages/edition-node-gulp/package.json
index 4b651b0f7..884dc93ac 100644
--- a/packages/edition-node-gulp/package.json
+++ b/packages/edition-node-gulp/package.json
@@ -1,13 +1,13 @@
{
"name": "@pattern-lab/edition-node-gulp",
"description": "The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.",
- "version": "2.0.0-alpha.15",
+ "version": "2.0.0-beta.0",
"main": "gulpfile.js",
"dependencies": {
- "@pattern-lab/cli": "^0.0.1-alpha.23",
- "@pattern-lab/core": "^3.0.0-alpha.16",
- "@pattern-lab/engine-mustache": "^2.0.0-alpha.8",
- "@pattern-lab/uikit-workshop": "^1.0.0-alpha.7",
+ "@pattern-lab/cli": "^0.0.1-beta.0",
+ "@pattern-lab/core": "^3.0.0-beta.0",
+ "@pattern-lab/engine-mustache": "^2.0.0-beta.0",
+ "@pattern-lab/uikit-workshop": "^1.0.0-beta.0",
"gulp": "3.9.1",
"minimist": "1.2.0"
},
diff --git a/packages/edition-node/CHANGELOG.md b/packages/edition-node/CHANGELOG.md
index fd4554dcf..2c775c87c 100644
--- a/packages/edition-node/CHANGELOG.md
+++ b/packages/edition-node/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [1.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node/compare/@pattern-lab/edition-node@1.0.0-alpha.13...@pattern-lab/edition-node@1.0.0-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/edition-node
+
+
+
+
+
# [1.0.0-alpha.13](https://github.com/pattern-lab/patternlab-node/tree/master/packages/edition-node/compare/@pattern-lab/edition-node@1.0.0-alpha.12...@pattern-lab/edition-node@1.0.0-alpha.13) (2018-07-09)
diff --git a/packages/edition-node/package.json b/packages/edition-node/package.json
index 1ca81d964..856c66522 100644
--- a/packages/edition-node/package.json
+++ b/packages/edition-node/package.json
@@ -1,13 +1,13 @@
{
"name": "@pattern-lab/edition-node",
"description": "A pure wrapper around patternlab-node core, the default pattern engine, and supporting frontend assets.",
- "version": "1.0.0-alpha.13",
+ "version": "1.0.0-beta.0",
"main": "patternlab-config.json",
"dependencies": {
- "@pattern-lab/cli": "^0.0.1-alpha.23",
- "@pattern-lab/core": "^3.0.0-alpha.16",
- "@pattern-lab/engine-mustache": "^2.0.0-alpha.8",
- "@pattern-lab/uikit-workshop": "^1.0.0-alpha.7"
+ "@pattern-lab/cli": "^0.0.1-beta.0",
+ "@pattern-lab/core": "^3.0.0-beta.0",
+ "@pattern-lab/engine-mustache": "^2.0.0-beta.0",
+ "@pattern-lab/uikit-workshop": "^1.0.0-beta.0"
},
"keywords": [
"Pattern Lab",
diff --git a/packages/engine-handlebars/CHANGELOG.md b/packages/engine-handlebars/CHANGELOG.md
index 6ac98f4e6..345712c32 100644
--- a/packages/engine-handlebars/CHANGELOG.md
+++ b/packages/engine-handlebars/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-handlebars/compare/@pattern-lab/engine-handlebars@2.0.0-alpha.8...@pattern-lab/engine-handlebars@2.0.0-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-handlebars
+
+
+
+
+
# [2.0.0-alpha.8](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-handlebars/compare/@pattern-lab/engine-handlebars@2.0.0-alpha.7...@pattern-lab/engine-handlebars@2.0.0-alpha.8) (2018-07-06)
diff --git a/packages/engine-handlebars/package.json b/packages/engine-handlebars/package.json
index 33fa3f289..df64f37a6 100644
--- a/packages/engine-handlebars/package.json
+++ b/packages/engine-handlebars/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-handlebars",
"description": "The Handlebars engine for Pattern Lab / Node",
- "version": "2.0.0-alpha.8",
+ "version": "2.0.0-beta.0",
"main": "lib/engine_handlebars.js",
"dependencies": {
"fs-extra": "0.30.0",
diff --git a/packages/engine-liquid/CHANGELOG.md b/packages/engine-liquid/CHANGELOG.md
index 25592dc11..6ff9851f4 100644
--- a/packages/engine-liquid/CHANGELOG.md
+++ b/packages/engine-liquid/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [1.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-liquid/compare/@pattern-lab/engine-liquid@1.0.0-alpha.10...@pattern-lab/engine-liquid@1.0.0-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-liquid
+
+
+
+
+
# [1.0.0-alpha.10](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-liquid/compare/@pattern-lab/engine-liquid@1.0.0-alpha.9...@pattern-lab/engine-liquid@1.0.0-alpha.10) (2018-07-06)
diff --git a/packages/engine-liquid/package.json b/packages/engine-liquid/package.json
index 017db5c7b..c70247086 100644
--- a/packages/engine-liquid/package.json
+++ b/packages/engine-liquid/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-liquid",
"description": "The Liquid engine for Pattern Lab / Node",
- "version": "1.0.0-alpha.10",
+ "version": "1.0.0-beta.0",
"main": "lib/engine_liquid.js",
"dependencies": {
"fs-extra": "5.0.0",
diff --git a/packages/engine-mustache/CHANGELOG.md b/packages/engine-mustache/CHANGELOG.md
index 698db7c44..6fde22abc 100644
--- a/packages/engine-mustache/CHANGELOG.md
+++ b/packages/engine-mustache/CHANGELOG.md
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-mustache/compare/@pattern-lab/engine-mustache@2.0.0-alpha.8...@pattern-lab/engine-mustache@2.0.0-beta.0) (2018-09-07)
+
+
+### Bug Fixes
+
+* **package:** update mustache dependency ([27bd4cd](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-mustache/commit/27bd4cd))
+
+
+
+
+
# [2.0.0-alpha.8](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-mustache/compare/@pattern-lab/engine-mustache@2.0.0-alpha.7...@pattern-lab/engine-mustache@2.0.0-alpha.8) (2018-07-06)
diff --git a/packages/engine-mustache/package.json b/packages/engine-mustache/package.json
index 6116fe60b..0a445ee3f 100644
--- a/packages/engine-mustache/package.json
+++ b/packages/engine-mustache/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-mustache",
"description": "The Mustache engine for Pattern Lab / Node",
- "version": "2.0.0-alpha.8",
+ "version": "2.0.0-beta.0",
"main": "lib/engine_mustache.js",
"dependencies": {
"fs-extra": "0.30.0",
diff --git a/packages/engine-nunjucks/CHANGELOG.md b/packages/engine-nunjucks/CHANGELOG.md
index c5f334584..4c6aa4186 100644
--- a/packages/engine-nunjucks/CHANGELOG.md
+++ b/packages/engine-nunjucks/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [0.1.4-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-nunjucks/compare/@pattern-lab/engine-nunjucks@0.1.4-alpha.4...@pattern-lab/engine-nunjucks@0.1.4-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-nunjucks
+
+
+
+
+
## [0.1.4-alpha.4](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-nunjucks/compare/@pattern-lab/engine-nunjucks@0.1.4-alpha.3...@pattern-lab/engine-nunjucks@0.1.4-alpha.4) (2018-07-06)
diff --git a/packages/engine-nunjucks/package.json b/packages/engine-nunjucks/package.json
index 98c8e34e5..ec7305eb4 100644
--- a/packages/engine-nunjucks/package.json
+++ b/packages/engine-nunjucks/package.json
@@ -26,7 +26,7 @@
"main": "lib/engine_nunjucks.js",
"name": "@pattern-lab/engine-nunjucks",
"scripts": {},
- "version": "0.1.4-alpha.4",
+ "version": "0.1.4-beta.0",
"publishConfig": {
"access": "public"
}
diff --git a/packages/engine-react/CHANGELOG.md b/packages/engine-react/CHANGELOG.md
index 49e7cfcdc..dd4c766b7 100644
--- a/packages/engine-react/CHANGELOG.md
+++ b/packages/engine-react/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [0.2.1-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-react/compare/@pattern-lab/engine-react@0.2.1-alpha.5...@pattern-lab/engine-react@0.2.1-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-react
+
+
+
+
+
## [0.2.1-alpha.5](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-react/compare/@pattern-lab/engine-react@0.2.1-alpha.4...@pattern-lab/engine-react@0.2.1-alpha.5) (2018-07-06)
diff --git a/packages/engine-react/package.json b/packages/engine-react/package.json
index 9f885b9ec..f08cab3a6 100644
--- a/packages/engine-react/package.json
+++ b/packages/engine-react/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-react",
"description": "The React engine for Pattern Lab / Node",
- "version": "0.2.1-alpha.5",
+ "version": "0.2.1-beta.0",
"main": "lib/engine_react.js",
"dependencies": {
"babel-core": "6.17.0",
diff --git a/packages/engine-twig/CHANGELOG.md b/packages/engine-twig/CHANGELOG.md
index 040dc4ac8..aebbb5b60 100644
--- a/packages/engine-twig/CHANGELOG.md
+++ b/packages/engine-twig/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [0.2.1-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-twig/compare/@pattern-lab/engine-twig@0.2.1-alpha.5...@pattern-lab/engine-twig@0.2.1-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-twig
+
+
+
+
+
## [0.2.1-alpha.5](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-twig/compare/@pattern-lab/engine-twig@0.2.1-alpha.4...@pattern-lab/engine-twig@0.2.1-alpha.5) (2018-07-06)
diff --git a/packages/engine-twig/package.json b/packages/engine-twig/package.json
index da0b2f0f8..934d2d3d1 100644
--- a/packages/engine-twig/package.json
+++ b/packages/engine-twig/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-twig",
"description": "The Twig engine for Pattern Lab / Node",
- "version": "0.2.1-alpha.5",
+ "version": "0.2.1-beta.0",
"main": "lib/engine_twig.js",
"dependencies": {
"fs-extra": "0.30.0",
diff --git a/packages/engine-underscore/CHANGELOG.md b/packages/engine-underscore/CHANGELOG.md
index 533ecb7e8..aa23f1abb 100644
--- a/packages/engine-underscore/CHANGELOG.md
+++ b/packages/engine-underscore/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [2.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-underscore/compare/@pattern-lab/engine-underscore@2.0.0-alpha.7...@pattern-lab/engine-underscore@2.0.0-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/engine-underscore
+
+
+
+
+
# [2.0.0-alpha.7](https://github.com/pattern-lab/patternlab-node/tree/master/packages/engine-underscore/compare/@pattern-lab/engine-underscore@2.0.0-alpha.6...@pattern-lab/engine-underscore@2.0.0-alpha.7) (2018-07-06)
diff --git a/packages/engine-underscore/package.json b/packages/engine-underscore/package.json
index c073d2936..89fa03ab3 100644
--- a/packages/engine-underscore/package.json
+++ b/packages/engine-underscore/package.json
@@ -1,7 +1,7 @@
{
"name": "@pattern-lab/engine-underscore",
"description": "The Underscore engine for Pattern Lab / Node",
- "version": "2.0.0-alpha.7",
+ "version": "2.0.0-beta.0",
"main": "lib/engine_underscore.js",
"dependencies": {
"underscore": "1.8.3"
diff --git a/packages/live-server/CHANGELOG.md b/packages/live-server/CHANGELOG.md
index 90c875efe..e099a5805 100644
--- a/packages/live-server/CHANGELOG.md
+++ b/packages/live-server/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [1.3.3-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/live-server/compare/@pattern-lab/live-server@1.3.3-alpha.6...@pattern-lab/live-server@1.3.3-beta.0) (2018-09-07)
+
+**Note:** Version bump only for package @pattern-lab/live-server
+
+
+
+
+
## [1.3.3-alpha.6](https://github.com/pattern-lab/patternlab-node/tree/master/packages/live-server/compare/@pattern-lab/live-server@1.3.3-alpha.5...@pattern-lab/live-server@1.3.3-alpha.6) (2018-07-06)
diff --git a/packages/live-server/package.json b/packages/live-server/package.json
index 2b10e9a10..9d90e3692 100644
--- a/packages/live-server/package.json
+++ b/packages/live-server/package.json
@@ -1,6 +1,6 @@
{
"name": "@pattern-lab/live-server",
- "version": "1.3.3-alpha.6",
+ "version": "1.3.3-beta.0",
"description": "simple development http server with live reload capability",
"keywords": [
"front-end",
diff --git a/packages/plugin-tab/CHANGELOG.md b/packages/plugin-tab/CHANGELOG.md
index db05da1ca..c6e197e4a 100644
--- a/packages/plugin-tab/CHANGELOG.md
+++ b/packages/plugin-tab/CHANGELOG.md
@@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [2.0.3-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/plugin-tab/compare/@pattern-lab/plugin-tab@2.0.3-alpha.5...@pattern-lab/plugin-tab@2.0.3-beta.0) (2018-09-07)
+
+
+### Bug Fixes
+
+* **package:** fix pathing and naming issues ([45583f8](https://github.com/pattern-lab/patternlab-node/tree/master/packages/plugin-tab/commit/45583f8))
+* **postinstall:** fix typo in name ([a1a9779](https://github.com/pattern-lab/patternlab-node/tree/master/packages/plugin-tab/commit/a1a9779))
+
+
+### Features
+
+* **package:** revamp plugin-tab ([2aa0f8f](https://github.com/pattern-lab/patternlab-node/tree/master/packages/plugin-tab/commit/2aa0f8f))
+
+
+
+
+
## [2.0.3-alpha.5](https://github.com/pattern-lab/patternlab-node/tree/master/packages/plugin-tab/compare/@pattern-lab/plugin-tab@2.0.3-alpha.4...@pattern-lab/plugin-tab@2.0.3-alpha.5) (2018-07-06)
diff --git a/packages/plugin-tab/package.json b/packages/plugin-tab/package.json
index cc26ea744..b83ac632a 100644
--- a/packages/plugin-tab/package.json
+++ b/packages/plugin-tab/package.json
@@ -1,6 +1,6 @@
{
"name": "@pattern-lab/plugin-tab",
- "version": "2.0.3-alpha.5",
+ "version": "2.0.3-beta.0",
"description": "",
"main": "index.js",
"dependencies": {
diff --git a/packages/uikit-workshop/CHANGELOG.md b/packages/uikit-workshop/CHANGELOG.md
index cc83a4d59..a038c259b 100644
--- a/packages/uikit-workshop/CHANGELOG.md
+++ b/packages/uikit-workshop/CHANGELOG.md
@@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# [1.0.0-beta.0](https://github.com/pattern-lab/patternlab-node/tree/master/packages/uikit-workshop/compare/@pattern-lab/uikit-workshop@1.0.0-alpha.7...@pattern-lab/uikit-workshop@1.0.0-beta.0) (2018-09-07)
+
+
+### Bug Fixes
+
+* add missing node-sass dependency ([643808b](https://github.com/pattern-lab/patternlab-node/tree/master/packages/uikit-workshop/commit/643808b))
+* add webpack-cli as a uikit-workshop dependency; update npm script to use locally installed version vs globally / temp version via npx ([812efe9](https://github.com/pattern-lab/patternlab-node/tree/master/packages/uikit-workshop/commit/812efe9))
+* adjust how PL's viewport is sized / positioned when the sidebar layout is active so iframed content is centered properly ([3caffbf](https://github.com/pattern-lab/patternlab-node/tree/master/packages/uikit-workshop/commit/3caffbf))
+* change const back to var since PL's Uikit JS isn't run through Babel just yet.. update Prettier config to ignore Uikit's JavaScript for the time being ([35c5726](https://github.com/pattern-lab/patternlab-node/tree/master/packages/uikit-workshop/commit/35c5726))
+* check to make sure the code panel-related