Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

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  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and 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)
    718
    819## [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  
    1616declare function whichTypedArray(value: BigInt64Array): 'BigInt64Array';
    1717declare function whichTypedArray(value: BigUint64Array): 'BigUint64Array';
     18declare function whichTypedArray(value: whichTypedArray.TypedArray): whichTypedArray.TypedArrayName;
    1819declare function whichTypedArray(value: unknown): false | null;
    1920
  • imaps-frontend/node_modules/which-typed-array/package.json

    rd565449 r0c6b92a  
    11{
    22        "name": "which-typed-array",
    3         "version": "1.1.15",
     3        "version": "1.1.16",
    44        "author": {
    55                "name": "Jordan Harband",
     
    3030                "tests-only": "nyc tape test",
    3131                "test:harmony": "nyc node --harmony --es-staging test",
    32                 "posttest": "aud --production",
     32                "posttest": "npx npm@'>=10.2' audit --production",
    3333                "lint": "eslint --ext=js,mjs .",
    3434                "postlint": "tsc -p . && attw -P",
     
    6868        },
    6969        "devDependencies": {
    70                 "@arethetypeswrong/cli": "^0.15.1",
    71                 "@ljharb/eslint-config": "^21.1.0",
     70                "@arethetypeswrong/cli": "^0.17.0",
     71                "@ljharb/eslint-config": "^21.1.1",
    7272                "@ljharb/tsconfig": "^0.2.0",
    7373                "@types/call-bind": "^1.0.5",
     
    7777                "@types/make-arrow-function": "^1.2.2",
    7878                "@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",
    8382                "eslint": "=8.8.0",
    8483                "in-publish": "^2.0.1",
     
    8988                "nyc": "^10.3.2",
    9089                "safe-publish-latest": "^2.0.0",
    91                 "tape": "^5.7.5",
     90                "tape": "^5.9.0",
    9291                "typescript": "next"
    9392        },
Note: See TracChangeset for help on using the changeset viewer.