Skip to content

Commit

Permalink
Rename library to Panini and bump to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Kimball committed Sep 29, 2015
1 parent 0a88e56 commit f807d58
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shipyard",
"version": "0.0.0",
"description": "A super tiny static site generator.",
"name": "panini",
"version": "0.1.0",
"description": "A super tiny flat file compiler.",
"main": "index.js",
"scripts": {
"test": "cd test && gulp"
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Shipyard
# Panini

A super tiny flat file generator for use with Gulp. It compiles a series of HTML *pages* using a common *layout*. These pages can also include *partials*, or external *data* as JSON or YAML.

Shipyard isn't quite a full-fledged static site generator—rather, it solves the very specific problem of assembling flat files from common elements.
Shipyard isn't meant to be full-fledged static site generator—rather, it solves the very specific problem of assembling flat files from common elements, using a templating language.

## Usage

```js
var gulp = require('gulp');
var shipyard = require('shipyard');
var panini = require('panini');

gulp.task('default', function() {
gulp.src('pages/**/*.html')
.pipe(shipyard({
.pipe(panini({
layouts: 'layouts/',
partials: 'partials/**/*.html'
}))
Expand Down
4 changes: 2 additions & 2 deletions test/Gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
var gulp = require('gulp');
var shipyard = require('../index');
var panini = require('../index');

gulp.task('default', function() {
gulp.src('pages/**/*.html')
.pipe(shipyard({
.pipe(panini({
layouts: 'layouts/',
partials: 'partials/**/*.html',
data: 'data/**/*.{json,yml}',
Expand Down

0 comments on commit f807d58

Please sign in to comment.