Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mattly committed Mar 27, 2013
1 parent c4f7885 commit 5747b5f
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Makefile
Expand Up @@ -5,11 +5,17 @@ test: test-unit
test-unit:
@NODE_ENV=test \
./node_modules/.bin/mocha \
--compilers coffee:coffee-script \
--reporter $(REPORTER)

package.json:
coffee package.coffee > package.json

markstache.js:
coffee -c markstache.coffee

build: clean package.json markstache.js

clean:
rm -f markstache.js
rm -f package.json
Expand Down
155 changes: 155 additions & 0 deletions markstache.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.coffee
Expand Up @@ -2,7 +2,7 @@ github = 'github.com/mattly/markstache'
info =
name: 'markstache'
description: 'Markdown and Mustache: Two great tastes together at last.'
version: '0.0.2'
version: '0.0.3'
author: 'Matthew Lyon <matthew@lyonheart.us>'
keywords: 'template templating markdown mustache'.split(' ')
tags: 'template templating markdown mustache'.split(' ')
Expand All @@ -29,7 +29,7 @@ info =
# preinstall
# postinstall
# poststart
# prepublish
prepublish: "make build"
# pretest
test: "make test"

Expand Down
3 changes: 2 additions & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "markstache",
"description": "Markdown and Mustache: Two great tastes together at last.",
"version": "0.0.2",
"version": "0.0.3",
"author": "Matthew Lyon <matthew@lyonheart.us>",
"keywords": [
"template",
Expand Down Expand Up @@ -29,6 +29,7 @@
"cheerio": "0.10.5"
},
"scripts": {
"prepublish": "make build",
"test": "make test"
},
"main": "markstache",
Expand Down

0 comments on commit 5747b5f

Please sign in to comment.