Grunt enabled port of adactios Pattern-Primer
As stated in the original docs:
Create little snippets of markup and save them to the "patterns folder." The pattern primer will generate a list of all the patterns in that folder. You will see the pattern rendered as HTML. You will also get the source displayed in a textarea.
Check also the related Blog Post & example from Jeremy.
This plugin requires Grunt ~0.4.0
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-patternprimer --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-patternprimer');
Run this task with the grunt patternprimer
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Type: String
Default: public
This is the Place all your HTML extracts (the pattern files) live it is relative to the <root>
folder of your project.
Type: Array
Default: ['global.css']
Array with all the css files you that should be loaded in the parttern primer.
Type: String
Default: docs
Specifies the destination of the pattern files when running a snapshot build and/or running the live server.
Type: Array
Default: [7020, 7030]
Ports that should be used when running the live server. The first index of that array will be used to serve the contents of the
patterns
folder live, the second port will be used to serve your last snapshot build (if one exists).
Type: String
Default: public/patterns
The location of your pattern catalogue, this source will be used to deliver the pattern catalogue from the live server and to generate snapshots from it.
Type: Boolean
Default: false
Determines if a live server should be fired up, or if the output ends up in the via dest
configured snapshot directory.
Type: Boolean
String
Default: false
Define your own index template for the patterns. Should be a file ending with the .html
extension.
Please omit the closing </body>
and </html>
tags, they will be added autmagically.
This configuration will start a live server that servers your pattern catalogue on port 7020.
// Project configuration.
grunt.initConfig({
patternprimer: {
my_target: {
ports: [7020],
src: 'public/patterns',
wwwroot: 'public',
css: ['global.css']
}
}
});
This configuration will not spin a live server, instead will save your catalogue (for static access)
in the dest
folder:
// Project configuration.
grunt.initConfig({
patternprimer: {
my_target: {
wwwroot: 'public',
css: ['global.css'],
dest: 'docs',
snapshot: true
}
}
});
This configuration (my favourite) will enable you to run a live server & do snapshotting by specifying the task from the cmd.
grunt patternprimer:live
will spin up the servers to deliver the live catalogue & the last snapshotted version.
grunt patternprimer:snapshot
will generate and save a new snapshot.
// Project configuration.
grunt.initConfig({
patternprimer: {
options: {
wwwroot: 'public',
css: ['global.css'],
dest: 'docs'
},
live: {
ports: [7020, 7030],
src: 'public/patterns',
},
snapshot: {
snapshot: true
}
}
});
- 2013-11-25 v0.1.0 Initial release.