Skip to content

Commit 8de66eb

Browse files
committed
#105 commit unminified files
1 parent 490c7b0 commit 8de66eb

File tree

6 files changed

+49894
-6
lines changed

6 files changed

+49894
-6
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ node_modules/
33
.build_cache~
44
.grunt/
55
build/*.map
6-
public/js/app.bundle.js
76
public/js/.app.bundle.js
87
public/js/app.js
9-
public/css/app.bundle.css
108
public/css/.app.bundle.css
119
public/css/app.css
1210
.DS_Store

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GitHub Burndown Chart as a Service. Answers the question "are my projects on tra
2323
```bash
2424
$ npm install burnchart -g
2525
$ burnchart 8080
26-
# burnchart/2.0.8 started on http://0.0.0.0:8080
26+
# burnchart/2.0.8 started on port 8080
2727
```
2828

2929
##Configuration

bin/run.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
var stat = require('node-static'),
33
path = require('path'),
44
http = require('http'),
5+
exec = require('child_process').exec,
56
pakg = require('../package.json');
67

78
var opts = {
@@ -20,5 +21,5 @@ var server = http.createServer(function(req, res) {
2021

2122
server.on('listening', function() {
2223
var addr = server.address();
23-
console.log('burnchart/' + pakg.version + ' started on http://' + addr.address + ':' + addr.port);
24-
});
24+
console.log('burnchart/' + pakg.version + ' started on port ' + addr.port);
25+
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "burnchart",
3-
"version": "2.0.9",
3+
"version": "2.0.10",
44
"description": "GitHub Burndown Chart as a Service",
55
"author": "Radek Stepan <dev@radekstepan.com> (http://radekstepan.com)",
66
"license": "AGPL-3.0",

0 commit comments

Comments
 (0)