I love PL and the work that Dave and Brad have been doing. This is just random bullshit I've been thinking after a week of Pattern Lab use. Just
I've found that working on my current Pattern Lab, the only directory I really need is the source
directory. That makes me think that all the config|core|extras|etc
folders could not exist or be hidden from the user. That way a generic Node process that could be used by grunt, gulp, broccoli, etc might be beneficial. The "engine" is hidden from the user. Then updates could be seamlessly injected where now it'd be a bit of a manual process.
I think the simplicity of just having the files you're working on decoupled from the technology would be great for onboarding new users. Edit your source
files (now at the project root) and point a nodeapp/grunt/gulp task at it.
It feels like a question of do you want it to be WordPress for patterns (engine coupled) or a Jekyll for patterns (engine decoupled/hidden).
Relevant links:
I've wondered if it's easier to just update some JSON instead of keeping folder and file names numerically prefixed. If you delete a pattern, it's a bit of work to re-ordinate all the other files (lots of git changes, etc).
This would maybe help in up-cycling patterns into a larger system (which is a lot of people's dream). I can then tell a backend developer to include()
the molecules/global/pagination.mustache
instead of molecules/02-global/03-pagination.mustache/
, where the numbers seem subject to change. PL could then start existing within a directory of a larger system.
I talked with Brad about this, I know it's on the roadmap. I wonder if Jekyll's _plugins
structure might be good here, and those are little web components (HTML/CSS/JS ... Polymer?) that inject features in to the style guide header. Extensions could be included/excluded using YAML/JSON as well.
I just wanted to +1 all of the above. Thanks for throwing together these notes, sir <3
This is probably the number one challenge we've run into.
Some other random bits:
I'd love to see a cleaner way of integrating PL (especially the Node port) into existing projects where I can just rely on it as a dependency and set it up to build the PL off a source directory which can be reused for styles in the rest of my project. It should be trivial to choose whatever build system you want and easily get your PL lab built without as much coupling to Grunt and the current setup.
I've seen some folks talk about introducing Jekyll and Assemble into the picture for the build portion. I think this is cool, but do think we should keep in mind how many additional dependencies this might introduce into the picture. The way I see myself (and my users) using PL is as part of an existing project where you have a
patterns
directory with your built PL stuff and otherwise just use your styles source per usual. That might just be me however :)