async-later
Advanced tools
Comparing version 0.1.8 to 0.1.9
{ | ||
"name": "async-later", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"description": "Functional directives for Promise and AsyncIterable", | ||
"types": "src/index.ts", | ||
"types": "dist/types/src/index.d.ts", | ||
"main": "./dist/node/cjs.js", | ||
@@ -11,5 +11,6 @@ "module": "./dist/node/esm.js", | ||
"scripts": { | ||
"build": "node scripts/build.js", | ||
"build": "node scripts/build.js && tsc", | ||
"test:node": "tape dist/node/test.cjs | tap-spec; nyc report ---reporter=text", | ||
"test:web": "rushx build && cat dist/browser/test.js | testling -u", | ||
"type-check": "tsc", | ||
"lint": "eslint ./src --fix" | ||
@@ -67,4 +68,5 @@ }, | ||
"dependencies": { | ||
"@babel/runtime": "~7.17.2" | ||
"@babel/runtime": "~7.17.2", | ||
"tslib": "~2.3.1" | ||
} | ||
} |
@@ -16,3 +16,3 @@ // Pending: https://stackoverflow.com/questions/68761267/capture-generic-type-of-passed-function-for-overloads-in-typescript | ||
export function overloadWithCurried<F extends (...args) => any>( | ||
export function overloadWithCurried<F extends (...args: any) => any>( | ||
fn: F | ||
@@ -24,4 +24,4 @@ ): { | ||
return (...args) => | ||
args.length == fn.length - 1 ? curried => fn(...[...args, curried]) : fn(...args); | ||
args.length == fn.length - 1 ? (curried: any) => fn(...[...args, curried]) : fn(...args); | ||
} | ||
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1624566
38
17865
2
2
+ Addedtslib@~2.3.1
+ Addedtslib@2.3.1(transitive)