knifecycle
Advanced tools
Comparing version 8.0.1 to 8.1.0
@@ -0,1 +1,5 @@ | ||
# [8.1.0](https://github.com/nfroidure/knifecycle/compare/v8.0.1...v8.1.0) (2020-01-19) | ||
## [8.0.1](https://github.com/nfroidure/knifecycle/compare/v8.0.0...v8.0.1) (2019-12-10) | ||
@@ -2,0 +6,0 @@ |
@@ -199,2 +199,3 @@ "use strict"; | ||
return str[0].toUpperCase() + str.slice(1); | ||
} | ||
} | ||
//# sourceMappingURL=build.js.map |
@@ -131,2 +131,3 @@ "use strict"; | ||
}); | ||
}); | ||
}); | ||
//# sourceMappingURL=build.mocha.js.map |
@@ -1007,2 +1007,3 @@ "use strict"; | ||
}, {}); | ||
} | ||
} | ||
//# sourceMappingURL=index.js.map |
@@ -1279,2 +1279,3 @@ "use strict"; | ||
}); | ||
}); | ||
}); | ||
//# sourceMappingURL=index.mocha.js.map |
@@ -52,2 +52,3 @@ "use strict"; | ||
return batches.some(batch => batch.includes(node.__name)); | ||
} | ||
} | ||
//# sourceMappingURL=sequence.js.map |
@@ -103,2 +103,3 @@ "use strict"; | ||
}); | ||
}); | ||
}); | ||
//# sourceMappingURL=sequence.mocha.js.map |
@@ -778,2 +778,3 @@ "use strict"; | ||
return `${dependencyDeclarationParts.optional ? '?' : ''}${dependencyDeclarationParts.serviceName}${dependencyDeclarationParts.mappedName !== dependencyDeclarationParts.serviceName ? '>' + dependencyDeclarationParts.mappedName : ''}`; | ||
} | ||
} | ||
//# sourceMappingURL=util.js.map |
@@ -881,2 +881,3 @@ "use strict"; | ||
}); | ||
}); | ||
}); | ||
//# sourceMappingURL=util.mocha.js.map |
{ | ||
"name": "knifecycle", | ||
"version": "8.0.1", | ||
"version": "8.1.0", | ||
"description": "Manage your NodeJS processes's lifecycle automatically with an unobtrusive dependency injection implementation.", | ||
@@ -34,4 +34,4 @@ "main": "dist/index.js", | ||
"bundleFiles": [ | ||
"src/*.d.ts", | ||
"dist/**/*.js" | ||
"dist", | ||
"src" | ||
] | ||
@@ -41,4 +41,4 @@ } | ||
"files": [ | ||
"src/*.d.ts", | ||
"dist/**/*.js", | ||
"dist", | ||
"src", | ||
"LICENSE", | ||
@@ -52,3 +52,3 @@ "README.md", | ||
"cli": "env NODE_ENV=${NODE_ENV:-cli}", | ||
"compile": "babel src --out-dir=dist", | ||
"compile": "babel src --out-dir=dist --source-maps=true", | ||
"cover": "nyc npm test && nyc report --reporter=html --reporter=text", | ||
@@ -62,3 +62,3 @@ "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage", | ||
"mocha": "mocha --require '@babel/register' src/*.mocha.js", | ||
"precz": "npm t && npm run lint && npm run doc && npm run architecture && npm run metapak -- -s", | ||
"precz": "npm t && npm run lint && npm run doc && npm run architecture && npm run metapak -- -s && npm run compile", | ||
"prepublish": "npm run compile", | ||
@@ -84,27 +84,27 @@ "prettier": "prettier --write src/*.js", | ||
"devDependencies": { | ||
"@babel/cli": "^7.7.4", | ||
"@babel/core": "^7.7.4", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.7.4", | ||
"@babel/preset-env": "^7.7.4", | ||
"@babel/register": "^7.7.4", | ||
"@babel/cli": "^7.8.3", | ||
"@babel/core": "^7.8.3", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.8.3", | ||
"@babel/preset-env": "^7.8.3", | ||
"@babel/register": "^7.8.3", | ||
"babel-eslint": "^10.0.3", | ||
"browserify": "^16.2.3", | ||
"commitizen": "^4.0.3", | ||
"conventional-changelog-cli": "^2.0.28", | ||
"coveralls": "^3.0.5", | ||
"conventional-changelog-cli": "^2.0.31", | ||
"coveralls": "^3.0.9", | ||
"cz-conventional-changelog": "^3.0.2", | ||
"eslint": "^6.7.1", | ||
"eslint-plugin-prettier": "^3.1.1", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"jsarch": "^2.0.3", | ||
"jsdoc-to-markdown": "^5.0.3", | ||
"karma": "^4.2.0", | ||
"karma": "^4.4.1", | ||
"karma-browserify": "^6.0.0", | ||
"karma-chrome-launcher": "^3.0.0", | ||
"karma-firefox-launcher": "^1.1.0", | ||
"karma-chrome-launcher": "^3.1.0", | ||
"karma-firefox-launcher": "^1.3.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-sauce-launcher": "^2.0.2", | ||
"metapak": "^3.1.6", | ||
"metapak-nfroidure": "9.7.4", | ||
"mocha": "^6.2.0", | ||
"nyc": "^14.1.1", | ||
"metapak-nfroidure": "9.8.1", | ||
"mocha": "^7.0.0", | ||
"nyc": "^15.0.0", | ||
"prettier": "^1.19.1", | ||
@@ -111,0 +111,0 @@ "sinon": "^7.2.6" |
@@ -12,3 +12,3 @@ export type DependencyName = string; | ||
export type Services<S = Service> = { [name: string]: S }; | ||
export type Parameters = { [name: string]: any }; | ||
export type Parameters<V = any> = { [name: string]: V }; | ||
@@ -15,0 +15,0 @@ export interface HandlerFunction<D, P extends Parameters, U extends any[], R> { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
635075
29
8304