Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
0.0.33: Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cmtt committed May 3, 2016
1 parent eb1571b commit 40c4f03
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,10 @@ let di = require('gulp-di')(gulp, {

## Changelog

0.0.33 - 05/03/2016

- Updating depencendies and adapting to changes

0.0.32 - 04/02/2016

- Correcting an example in this file
Expand Down
2 changes: 1 addition & 1 deletion contrib/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module.exports = function HelpTask (gulp) {
let entry = null;

if (typeof fn === 'function') {
let info = parseFn(fn);
let info = parseFn(fn.toString());
entry = {
name : id
};
Expand Down
3 changes: 1 addition & 2 deletions lib/di.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,8 @@ module.exports = (function () {
*/

function propertyKeys(obj) {
let ownProperties = Object.getOwnPropertyNames(obj);
let keys = Object.keys(obj);
return ownProperties.filter((prop) => keys.indexOf(prop) === -1);
return keys.filter((prop) => obj.hasOwnProperty(prop));
}

class GulpDI {
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-di",
"version": "0.0.32",
"version": "0.0.33",
"description": "Dependency injection framework for the Gulp streaming build system",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -33,25 +33,25 @@
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"chalk": "^1.1.3",
"extract-comments": "^0.10.1",
"findup-sync": "^0.3.0",
"findup-sync": "^0.4.0",
"gulp": "*",
"gulp-concat": "^2.6.0",
"gulp-istanbul": "^0.10.3",
"gulp-istanbul": "^0.10.4",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-load-plugins": "^1.2.2",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.7",
"jshint": "^2.9.1",
"lodash": "^4.6.1",
"jshint": "^2.9.2",
"lodash": "^4.11.2",
"pad": "^1.0.0",
"parse-function": "^2.3.1",
"parse-function": "^2.3.2",
"parse-stack": "^0.1.3",
"require-dir": "^0.3.0"
},
"devDependencies": {
"coveralls": "^2.11.8"
"coveralls": "^2.11.9"
}
}

0 comments on commit 40c4f03

Please sign in to comment.