Editing Pattern Lab Source Files

When editing Pattern Lab you must put your files and edit them in the ./source/ directory. This includes your static assets like JavaScript, CSS, and images. Each time your site is generated your patterns will be compiled and your static assets will be moved to the ./public/ directory. Because of this you should not edit the files in the ./public/ directory.

Pattern Lab Directoriespermalink

For the most part you can organize ./source/ anyway you see fit. There are a few Pattern Lab-specific directories though. They are:

Configuring Pattern Lab Directoriespermalink

All Pattern Lab directories can be configured to suit your needs.

// base directories
exportDir: 'value'; // default is exports. where clean mark-up sans PL code is exported to.
publicDir: 'value'; // default is public
sourceDir: 'value'; // default is source

// exportDir is the base directory for the following directories (e.g. ./exports/patterns)
patternExportDir: 'value'; // default is patterns

// publicDir is the base directory for the following directories (e.g. ./public/patterns)
componentDir: 'value'; // default is patternlab-components. where plugin components are installed.
patternPublicDir: 'value'; // default is patterns

// sourceDir is the base directory for the following directories (e.g. ./source/_patterns)
annotationsDir: 'value'; // default is _annotations
dataDir: 'value'; // default is _data
metaDir: 'value'; // default is _meta
patternSourceDir: 'value'; // default is _patterns

In the Node version of Pattern Lab you can modify the following configuration options in patternlab-config.json:

"paths" : {
"source" : {
"root": "./source/",
"patterns" : "./source/_patterns/",
"data" : "./source/_data/",
"meta": "./source/_meta/",
"annotations" : "./source/_annotations/",
"styleguide" : "./node_modules/styleguidekit-assets-default/dist/",
"patternlabFiles" : "./node_modules/styleguidekit-mustache-default/views/",
"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"
}
}

Problems after changing the structurepermalink

If you're doing bigger changes, especially to the file and folder structure, and recognize some errors on the console like, e.g. TypeError: Cannot read property 'render' of undefined or Error building BuildFooterHTML, it's recommended to stop pattern lab, delete the cache file dependencyGraph.json within the root of the project and start pattern lab again, as these changes might conflict with the existing cache structures.

Watching for Source File Changespermalink

Manually generating the Pattern Lab website after each change can be cumbersome. The Node version of Pattern Lab comes with the ability to watch files in the ./source/ directory for changes and re-generate the site automatically. The Pattern Lab website can also be automatically reloaded.