From 8da3d6d83cda5819176d6fd35439eb6b79d7edeb Mon Sep 17 00:00:00 2001 From: Jordan Scales Date: Mon, 26 Aug 2013 11:09:22 -0400 Subject: [PATCH] Fixed dependency versions, changed name field to title --- examples/basic.md | 2 +- lib/cleaver.js | 1 + package.json | 7 ++++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/basic.md b/examples/basic.md index 18b5631..0cef234 100644 --- a/examples/basic.md +++ b/examples/basic.md @@ -1,4 +1,4 @@ -name: Example +title: Example author: name: Aaron Patterson twitter: @tenderlove diff --git a/lib/cleaver.js b/lib/cleaver.js index 67fe890..decd748 100644 --- a/lib/cleaver.js +++ b/lib/cleaver.js @@ -8,6 +8,7 @@ function Cleaver(options) { if (!options.file) throw "!! Please specify a file with the --file option"; // filenames which will be used to read in data + // TODO: refactor templating and static files into its own thing this.stylesheetFile = Cleaver.ROOT_DIR + 'styles/default.css'; this.templateFile = Cleaver.ROOT_DIR + 'templates/layout.mustache'; this.jqueryFile = Cleaver.ROOT_DIR + 'resources/jquery.min.js'; diff --git a/package.json b/package.json index e51f69f..f534acb 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,10 @@ "cleaver": "./bin/cleaver" }, "dependencies" : { - "optimist": "0.3.x", - "mustache": "0.7.x", + "optimist": "0.3.5", + "mustache": "0.7.0", "q": "0.9.6", - "node-markdown": "0.1.x" + "node-markdown": "0.1.1", + "yaml": "0.2.3" } }