alcalzone-shared
Advanced tools
Comparing version 4.0.1 to 4.0.2
{ | ||
"name": "alcalzone-shared", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "A set of utilities shared between my projects", | ||
@@ -25,33 +25,32 @@ "keywords": [], | ||
"devDependencies": { | ||
"@alcalzone/release-script": "~3.4.1", | ||
"@alcalzone/release-script-plugin-license": "~3.4.1", | ||
"@types/chai": "^4.2.22", | ||
"@types/chai-as-promised": "^7.1.4", | ||
"@alcalzone/release-script": "~3.5.9", | ||
"@alcalzone/release-script-plugin-license": "~3.5.9", | ||
"@types/chai": "^4.3.1", | ||
"@types/chai-as-promised": "^7.1.5", | ||
"@types/debug": "4.1.7", | ||
"@types/mocha": "^9.0.0", | ||
"@types/node": "^16.11.6", | ||
"@types/mocha": "^9.1.1", | ||
"@types/node": "^16.11.38", | ||
"@types/proxyquire": "^1.3.28", | ||
"@types/sinon": "^10.0.6", | ||
"@types/sinon-chai": "^3.2.5", | ||
"@types/yargs": "^17.0.5", | ||
"chai": "^4.3.4", | ||
"@types/sinon": "^10.0.11", | ||
"@types/sinon-chai": "^3.2.8", | ||
"@types/yargs": "^17.0.10", | ||
"chai": "^4.3.6", | ||
"chai-as-promised": "^7.1.1", | ||
"colors": "^1.1.2", | ||
"coveralls": "^3.1.1", | ||
"mocha": "^9.1.3", | ||
"mocha": "^9.2.2", | ||
"nyc": "^15.1.0", | ||
"proxyquire": "^2.1.0", | ||
"rimraf": "^3.0.0", | ||
"semver": "^7.3.5", | ||
"sinon": "^11.1.2", | ||
"semver": "^7.3.7", | ||
"sinon": "^13.0.2", | ||
"sinon-chai": "^3.7.0", | ||
"source-map-support": "^0.5.20", | ||
"ts-node": "^10.4.0", | ||
"source-map-support": "^0.5.21", | ||
"ts-node": "^10.9.1", | ||
"tslint": "^6.1.3", | ||
"typedoc": "^0.22.7", | ||
"typescript": "^4.4.4", | ||
"yargs": "^17.2.1" | ||
"typedoc": "^0.23.10", | ||
"typescript": "^4.7.4", | ||
"yargs": "^17.5.1" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.3.2" | ||
"debug": "^4.3.4" | ||
}, | ||
@@ -58,0 +57,0 @@ "scripts": { |
@@ -17,2 +17,5 @@ # shared-utils | ||
--> | ||
### 4.0.2 (2022-08-27) | ||
* Update `isArray` to be compatible with TS 4.8 changes | ||
### 4.0.1 (2021-11-15) | ||
@@ -19,0 +22,0 @@ `SortedQueue`: Fixed an issue where inserting an item before the first one would cause the queue to lose track of items |
@@ -6,2 +6,3 @@ /** | ||
export declare function isObject<T>(it: T): it is T & Record<string, unknown>; | ||
declare type ExtractArray<T> = T extends unknown[] ? T : (T & unknown[]); | ||
/** | ||
@@ -11,2 +12,3 @@ * Tests whether the given variable is really an Array | ||
*/ | ||
export declare function isArray<T>(it: T): it is T & unknown[]; | ||
export declare function isArray<T>(it: T): it is ExtractArray<T>; | ||
export {}; |
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
44720
27
1115
69
Updateddebug@^4.3.4