Changeset 0c6b92a for imaps-frontend/node_modules/which-typed-array
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/which-typed-array
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which-typed-array/CHANGELOG.md
rd565449 r0c6b92a 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [v1.1.16](https://github.com/inspect-js/which-typed-array/compare/v1.1.15...v1.1.16) - 2024-11-27 9 10 ### Commits 11 12 - [actions] split out node 10-20, and 20+ [`8e289a9`](https://github.com/inspect-js/which-typed-array/commit/8e289a9665a32f7ea267c3ffed7451b154adbe26) 13 - [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/eslint-config`, `@types/node`, `@types/tape`, `auto-changelog`, `tape` [`3d4a678`](https://github.com/inspect-js/which-typed-array/commit/3d4a67872d0dbecb755e63ba4101e9ec030a5e7e) 14 - [Tests] replace `aud` with `npm audit` [`6fbada9`](https://github.com/inspect-js/which-typed-array/commit/6fbada976743192db47000e47eefc07708713ea0) 15 - [types] add an additional overload [`db5a791`](https://github.com/inspect-js/which-typed-array/commit/db5a791642cd8b4d78fe4ed4da151c4543ee0840) 16 - [Dev Deps] remove an unused DT package [`6bfff4c`](https://github.com/inspect-js/which-typed-array/commit/6bfff4c3b0c415cb32cd12be6fab3cbbe9e10e13) 17 - [Dev Deps] add missing peer dep [`05fd582`](https://github.com/inspect-js/which-typed-array/commit/05fd582a703cd68ee7613af0ef2c45546ea5d2ba) 7 18 8 19 ## [v1.1.15](https://github.com/inspect-js/which-typed-array/compare/v1.1.14...v1.1.15) - 2024-03-10 -
imaps-frontend/node_modules/which-typed-array/index.d.ts
rd565449 r0c6b92a 16 16 declare function whichTypedArray(value: BigInt64Array): 'BigInt64Array'; 17 17 declare function whichTypedArray(value: BigUint64Array): 'BigUint64Array'; 18 declare function whichTypedArray(value: whichTypedArray.TypedArray): whichTypedArray.TypedArrayName; 18 19 declare function whichTypedArray(value: unknown): false | null; 19 20 -
imaps-frontend/node_modules/which-typed-array/package.json
rd565449 r0c6b92a 1 1 { 2 2 "name": "which-typed-array", 3 "version": "1.1.1 5",3 "version": "1.1.16", 4 4 "author": { 5 5 "name": "Jordan Harband", … … 30 30 "tests-only": "nyc tape test", 31 31 "test:harmony": "nyc node --harmony --es-staging test", 32 "posttest": " aud--production",32 "posttest": "npx npm@'>=10.2' audit --production", 33 33 "lint": "eslint --ext=js,mjs .", 34 34 "postlint": "tsc -p . && attw -P", … … 68 68 }, 69 69 "devDependencies": { 70 "@arethetypeswrong/cli": "^0.1 5.1",71 "@ljharb/eslint-config": "^21.1. 0",70 "@arethetypeswrong/cli": "^0.17.0", 71 "@ljharb/eslint-config": "^21.1.1", 72 72 "@ljharb/tsconfig": "^0.2.0", 73 73 "@types/call-bind": "^1.0.5", … … 77 77 "@types/make-arrow-function": "^1.2.2", 78 78 "@types/make-generator-function": "^2.0.3", 79 "@types/node": "^20.11.25", 80 "@types/tape": "^5.6.4", 81 "aud": "^2.0.4", 82 "auto-changelog": "^2.4.0", 79 "@types/tape": "^5.6.5", 80 "auto-changelog": "^2.5.0", 81 "encoding": "^0.1.13", 83 82 "eslint": "=8.8.0", 84 83 "in-publish": "^2.0.1", … … 89 88 "nyc": "^10.3.2", 90 89 "safe-publish-latest": "^2.0.0", 91 "tape": "^5. 7.5",90 "tape": "^5.9.0", 92 91 "typescript": "next" 93 92 },
Note:
See TracChangeset
for help on using the changeset viewer.