File tree Expand file tree Collapse file tree 4 files changed +36
-1
lines changed Expand file tree Collapse file tree 4 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var pkg = require ( '../../package.json' ) ;
4
+ var winston = require ( 'winston' ) ;
5
+
6
+ winston . log ( 'info' , 'Configuration Updater started @ %s' , new Date ( ) . toString ( ) ) ;
7
+
8
+
Original file line number Diff line number Diff line change
1
+
2
+ 'use strict' ;
3
+
4
+ var winston = require ( 'winston' ) ;
5
+ var pkg = require ( '../package.json' ) ;
6
+ var child_process = require ( 'child_process' ) ;
7
+ var monitor_runner = require ( '../lib/monitor_runner' ) ;
8
+ var configuration_updater = require ( '../lib/configuration_updater' ) ;
9
+
10
+ winston . info ( 'Codeine Peer - ' + pkg . version ) ;
11
+
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var pkg = require ( '../../package.json' ) ;
4
+ var winston = require ( 'winston' ) ;
5
+
6
+ winston . log ( 'info' , 'Monitor Runner started @ %s' , new Date ( ) . toString ( ) ) ;
7
+
8
+
Original file line number Diff line number Diff line change 19
19
"grunt-contrib-jshint" : " ~0.10.0" ,
20
20
"grunt-contrib-watch" : " ~0.6.1" ,
21
21
"grunt-exec" : " ~0.4.2" ,
22
- "load-grunt-tasks" : " ~0.6.0"
22
+ "load-grunt-tasks" : " ~0.6.0" ,
23
+ "mocha" : " ^2.0.1"
23
24
},
24
25
"scripts" : {
25
26
"test" : " grunt test"
26
27
},
27
28
"bin" : {
28
29
"codeine" : " bin/codeine"
30
+ },
31
+ "dependencies" : {
32
+ "async" : " ^0.9.0" ,
33
+ "minimist" : " ^1.1.0" ,
34
+ "request" : " ^2.48.0" ,
35
+ "underscore" : " ^1.7.0" ,
36
+ "winston" : " ^0.8.3"
29
37
}
30
38
}
You can’t perform that action at this time.
0 commit comments