-
Notifications
You must be signed in to change notification settings - Fork 405
Upgrading
To upgrade the Node version of Pattern Lab do the following:
-
Important: Make a back-up of
source/andpatternlab-config.jsonand yourGruntfile|Gulpfile. -
Download the latest release of the Node version of Pattern Lab and run
npm installfrom your project directory, or usenpm update patternlab-nodeif you originally installed Pattern Lab vianpm. - Restore files in
source/andpatternlab-config.jsonif needed. - Be mindful of whether you need to merge any customizations to
patternlab-config.jsonor yourGruntfile|GulpfileNotepatternlab-config.jsonwas namedconfig.jsonuntil version 1.2.0
If you encounter trouble - make sure your npm devDependencies are up to date. Assuming you have the latest package.json file, you can delete the contents of ./node_modules and run npm cache clear before running npm install to pull down everything anew.
If running Pattern Lab Node as a dependency
- Gulpfile\Gruntfile changes occurred in v1.1.0 and v1.1.2. Check out the diffs if you need to merge your configuration.
*Upgrading to v1.2.0 includes a bunch of file re-arranging, and therefore it's more important than ever to take a fresh copy of the source code. Here's the whole diff. Notable changes, if you should attempt to merge manually:
-
Renaming
config.jsontopatternlab-config.json -
Migration of
./source/_patternlab-files/*to locations under./core/ -
Optional inclusion of two new mustache files
./source/_patterns/00-atoms/00-meta/_00-head.mustache./source/_patterns/00-atoms/00-meta/_00-foot.mustache
-
Upgrading to v1.1.0 requires:
- Major changes have occurred in the shipped
Gruntfile|Gulpfile. It's recommended to take the new versions's file and manually merge any customizations you have. The good news is configurable paths make for a ton more flexibility into the future. - Add the following to the
config.json:
"paths" : { "source" : { "root": "./source/", "patterns" : "./source/_patterns/", "data" : "./source/_data/", "styleguide" : "./core/styleguide/", "patternlabFiles" : "./source/_patternlab-files/", "js" : "./source/js", "images" : "./source/images", "fonts" : "./source/fonts", "css" : "./source/css/" },
- All
.scssfiles have been removed from the filesystem andGruntfile|Gulpfile. They caused confusion of sorts and added complexity for little benefit, as the styleguide doesn't change significantly and the shipped pattern styling is not intended to be used. With the roadmap point to other kits, for patterns and the styleguide, this feels like good preparation and aligned with the theme of this release to be about future-consumption.
- Major changes have occurred in the shipped
-
Upgraded to v0.14.0 requires:
- Adding the following to
config.json:
- Adding the following to
"styleGuideExcludes": [ "templates", "pages" ] ```
- Upgrading to v0.13.0 requires:
- Overwriting
/source/_patternlab-files/styleguide.mustache - Overwriting
/source/_patternlab-files/viewall.mustache
- Overwriting
- Upgrading to v0.12.0 requires overwriting:
source/_patternlab-files/partials/ishControls.mustache - Upgrading to v0.10.X or v0.11.0 requires:
- Add
"baseurl" : ""toconfig.json - Overwrite
source/_patternlab-files/pattern-header-footer/footer.html - Overwrite
source/_patternlab-files/styleguide.mustache - Overwrite
source/_patternlab-files/viewall.mustache
- Add