Skip to content

Commit

Permalink
Update dependencies (#147)
Browse files Browse the repository at this point in the history
* Update packages
lodash - ^4.13.1
mocha - 2.5.3

* Update mockery to 1.7.x

* Update istanbul to 0.4.4

* Update Chai et al.

* Update contentful to 3.5.0

* Update timeout
  • Loading branch information
tmilewski committed Jul 11, 2016
1 parent c28cec3 commit 72c847c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/index.coffee
Expand Up @@ -193,7 +193,7 @@ module.exports = (opts) ->
W.map t.content, (entry) =>
template = path.join(@roots.root, t.template)
compiler = _.find @roots.config.compilers, (c) ->
_.contains(c.extensions, path.extname(template).substring(1))
_.includes(c.extensions, path.extname(template).substring(1))
W.map entry._urls, (url) =>
@roots.config.locals.entry = _.assign({}, entry, { _url: url })
compiler.renderFile(template, @roots.config.locals)
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -7,21 +7,21 @@
"url": "https://github.com/carrot/roots-contentful/issues"
},
"dependencies": {
"contentful": "^3.3.2",
"lodash": "^3.10.1",
"pluralize": "^1.2.1",
"contentful": "^3.5.0",
"lodash": "^4.13.1",
"pluralize": "^3.0.0",
"roots-util": "0.1.x",
"string": "^3.1.3",
"when": "3.7.x"
},
"devDependencies": {
"chai": "3.4.1",
"chai-as-promised": "5.1.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"coffee-script": "1.10.0",
"coveralls": "2.x",
"istanbul": "0.4.1",
"mocha": "2.3.4",
"mockery": "1.4.x",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"mockery": "1.7.x",
"roots": "4.0.1"
},
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion test/mocha.opts
@@ -1,4 +1,4 @@
--reporter spec
--compilers coffee:coffee-script/register
--require test/support/helpers
--timeout 30000
--timeout 60000

0 comments on commit 72c847c

Please sign in to comment.