Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "runner", | ||
"description": "development restart script for node.js", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": "Tobias Kopelke <nox@demoncode.de>", | ||
@@ -11,3 +11,4 @@ "dependencies": { | ||
"main": "runner.js", | ||
"bin": { "run": "runner.js" }, | ||
"engines": { "node": ">= 0.2.0" } | ||
} |
@@ -1,6 +0,8 @@ | ||
var version = 1.00 | ||
#!/usr/bin/env node | ||
var version = 1.01 | ||
, changes = { | ||
'1.00': [ 'added changenotes' | ||
, 'added extension support, not only .js now...' | ||
, 'support for .js, .jade, .haml, .html, .sass, .scss' | ||
, 'support for .js, .jade, .haml, .html, .sass, .scss, .less, .styl' | ||
, 'trying to use npm-js-syntax' | ||
@@ -24,2 +26,4 @@ ] | ||
js: 'JavaScript' | ||
, styl: 'Stylus-template' | ||
, less: 'LESS-template' | ||
, jade: 'Jade-template' | ||
@@ -26,0 +30,0 @@ , haml: 'HAML-template' |
3192
95