Skip to content

Commit ff9118b

Browse files
author
Ilya Radchenko
committed
Update deps and fix tests
fixes #35
1 parent 44179b4 commit ff9118b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Runner.prototype = {
297297
var projectName = job.project.name.replace('/', '-')
298298
, branchName = branchFromJob(job).replace('/', '-')
299299
, branchBase = path.join(self.config.dataDir, 'data', projectName + '-' + branchName)
300-
, recentBuilds = config.runner.config.recentBuilds
300+
, recentBuilds = _.get(config, 'runner.config.recentBuilds')
301301

302302
if (typeof recentBuilds === 'undefined') {
303303
recentBuilds = self.config.defaultRecentBuilds

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
"url": "https://github.com/Strider-CD/strider-simple-runner"
1010
},
1111
"dependencies": {
12-
"async": "~0.1.22",
13-
"lodash": "~1.3.1",
14-
"eventemitter2": "~0.4.13",
15-
"strider-runner-core": "~2.0.0",
16-
"strider-extension-loader": "~0.4.3",
17-
"fs-extra": "~0.8.1",
12+
"async": "^1.5.2",
1813
"dirkeeper": "^1.0.0",
19-
"json-stable-stringify": "~1.0.1"
14+
"eventemitter2": "^1.0.3",
15+
"fs-extra": "^0.29.0",
16+
"json-stable-stringify": "~1.0.1",
17+
"lodash": "^4.11.1",
18+
"strider-extension-loader": "~0.4.3",
19+
"strider-runner-core": "~2.0.0"
2020
},
2121
"devDependencies": {
2222
"mocha": "^1.21.1",

0 commit comments

Comments
 (0)