-
Notifications
You must be signed in to change notification settings - Fork 405
Upgrading
To upgrade the Node version of Pattern Lab do the following:
It's highly recommended to use an edition of Pattern Lab Node, which comes prepackaged with all dependencies, including this core library, and should enable simple core library upgrades.
To upgrade an edition, assuming no major changes have occurred, run:
npm update
There is no automated upgrade path from Pattern Lab 1.X
to 2.X
.
- Install an edition of Pattern Lab Node
- Move the following files:
- 1.X
source/*
to 2.Xsource/
- 1.X
source/_patterns/00-atoms/00-meta/*
to 2.Xsource/_meta/
(you can then deletesource/_patterns/00-atoms/00-meta/
) - 1.X
source/_data/annotations.js
to 2.Xsource/_annotations/
- Remap the paths configured in the edition's
patternlab-config.json
file with yours, if needed.
Any problems, please open an issue
1.X is no longer supported.
-
Important: Make a back-up of
source/
andpatternlab-config.json
and yourGruntfile
|Gulpfile
. -
Download the latest release of the Node version of Pattern Lab and run
npm install
from your project directory, or usenpm update patternlab-node
if you originally installed Pattern Lab vianpm.
- Restore files in
source/
andpatternlab-config.json
if needed. - Be mindful of whether you need to merge any customizations to
patternlab-config.json
or yourGruntfile
|Gulpfile
Note patternlab-config.json
was named config.json
until 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 [v.1.3.0](https://github.com/pattern-lab/patternlab-node/releases/tag/v1.3.0_ requires a new dependency, so make sure to run
npm update
ornpm install
to get JSON5. -
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.json
topatternlab-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
- Renaming
-
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
.scss
files 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