Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jstransformers/boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Jun 26, 2016
2 parents 6a4963b + 0f8a1fb commit d1570b1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
- "6"

after_success:
- npm run coverage
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.2.0: 2016-06-26

- Updated Boilerplate

## v0.1.0: 2015-07-22

- Updated Boilerplate
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@

```js
var whiskers = require('jstransformer')(require('jstransformer-whiskers'))
var template = "Hello {name}!";
var locals = { name: "World" };

var template = "Hello {name}!"
var locals = { name: "World" }

whiskers.render(template, locals).body
//=> 'Hello World!'
Expand Down
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"dependencies": {
"whiskers": "^0.3.3"
},
"name": "jstransformer-whiskers",
"version": "0.1.0",
"version": "0.2.0",
"description": "Whiskers.js support for JSTransformers.",
"keywords": [
"jstransformer"
Expand All @@ -12,8 +15,11 @@
"test-jstransformer": "^1.0.0"
},
"scripts": {
"test": "test-jstransformer",
"coverage": "test-jstransformer coverage"
"coverage": "test-jstransformer coverage",
"test": "test-jstransformer"
},
"engines": {
"node": ">=0.10.36"
},
"repository": {
"type": "git",
Expand All @@ -23,8 +29,5 @@
"name": "JSTransformers Team",
"url": "http://github.com/orgs/jstransformers/people"
},
"license": "MIT",
"dependencies": {
"whiskers": "^0.3.3"
}
"license": "MIT"
}

0 comments on commit d1570b1

Please sign in to comment.