Changeset 0c6b92a for imaps-frontend/node_modules/is-finalizationregistry
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/is-finalizationregistry
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-finalizationregistry/.eslintrc
rd565449 r0c6b92a 4 4 "extends": "@ljharb", 5 5 6 "globals": {7 "FinalizationRegistry": false,8 },9 10 6 "rules": { 11 7 "id-length": 0, 12 "operator-linebreak": [2, "before"],13 8 }, 14 9 } -
imaps-frontend/node_modules/is-finalizationregistry/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.0](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.2...v1.1.0) - 2024-11-23 9 10 ### Commits 11 12 - [actions] reuse common workflows [`b9b56fe`](https://github.com/inspect-js/is-finalizationregistry/commit/b9b56fe405d0385fcbcc587abcf7b6f0c5b4e7be) 13 - [meta] use `npmignore` to autogenerate an npmignore file [`4b65c3d`](https://github.com/inspect-js/is-finalizationregistry/commit/4b65c3dfe532ba3d1130f9bd7d36d674790b836d) 14 - [New] add TS types [`22c7c81`](https://github.com/inspect-js/is-finalizationregistry/commit/22c7c81612a906c787432a0c70df27c2a278f370) 15 - [actions] split out node 10-20, and 20+ [`b4bc95a`](https://github.com/inspect-js/is-finalizationregistry/commit/b4bc95a923323b9064965442f2a5646c1ec4b99b) 16 - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `safe-publish-latest`, `tape` [`25d2e81`](https://github.com/inspect-js/is-finalizationregistry/commit/25d2e815627d5549bbd366fd95dcd134f99fc16d) 17 - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `object-inspect`, `tape` [`a045ec6`](https://github.com/inspect-js/is-finalizationregistry/commit/a045ec6d56106561232bd7dbd95c058d195cd3d9) 18 - [actions] update rebase action to use reusable workflow [`14ee45b`](https://github.com/inspect-js/is-finalizationregistry/commit/14ee45b34361a4a14cfc444a71601e55ddd98a6e) 19 - [actions] update codecov uploader [`d37bfcb`](https://github.com/inspect-js/is-finalizationregistry/commit/d37bfcb43695e56c06829b05051f5b5f4cdbcd6b) 20 - [Dev Deps] update `@ljharb/eslint-config`, `auto-changelog`, `npmignore`, `object-inspect`, `tape` [`a36b69c`](https://github.com/inspect-js/is-finalizationregistry/commit/a36b69c8f1a43beb07416658609b9950e58bb615) 21 - [meta] clean up `exports` [`35b3562`](https://github.com/inspect-js/is-finalizationregistry/commit/35b35627f8234e76a92e72669f7c5041e2c4074b) 22 - [meta] add missing `engines.node` [`0603193`](https://github.com/inspect-js/is-finalizationregistry/commit/06031931c5f4e672f47463da2c7b43b45a629819) 23 - [Tests] replace `aud` with `npm audit` [`05b4596`](https://github.com/inspect-js/is-finalizationregistry/commit/05b459606f22cebe6a42101438bfcdae68313786) 24 - [Deps] update `call-bind` [`6482025`](https://github.com/inspect-js/is-finalizationregistry/commit/6482025cba84cff2b51db51768ed6d391f01335d) 25 - [Dev Deps] add missing peer dep [`90f97dd`](https://github.com/inspect-js/is-finalizationregistry/commit/90f97ddc8998ead46f26d8b2fa0fd8be17ea48bb) 7 26 8 27 ## [v1.0.2](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.1...v1.0.2) - 2021-10-05 -
imaps-frontend/node_modules/is-finalizationregistry/index.js
rd565449 r0c6b92a 3 3 var callBound = require('call-bind/callBound'); 4 4 5 /** @type {undefined | ((value: ThisParameterType<typeof FinalizationRegistry.prototype.register>, ...args: Parameters<typeof FinalizationRegistry.prototype.register>) => ReturnType<typeof FinalizationRegistry.prototype.register>)} */ 5 6 var $register = callBound('FinalizationRegistry.prototype.register', true); 6 7 8 /** @type {import('.')} */ 7 9 module.exports = $register 8 10 ? function isFinalizationRegistry(value) { … … 11 13 } 12 14 try { 13 $register(value, {}); 15 // @ts-expect-error TS can't figure out that it's always truthy here 16 $register(value, {}, null); 14 17 return true; 15 18 } catch (e) { … … 17 20 } 18 21 } 22 // @ts-ignore unused var 19 23 : function isFinalizationRegistry(value) { // eslint-disable-line no-unused-vars 20 24 return false; -
imaps-frontend/node_modules/is-finalizationregistry/package.json
rd565449 r0c6b92a 1 1 { 2 2 "name": "is-finalizationregistry", 3 "version": "1. 0.2",3 "version": "1.1.0", 4 4 "description": "Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", 5 5 "main": "index.js", 6 "types": "index.d.ts", 6 7 "exports": { 7 ".": [ 8 { 9 "default": "./index.js" 10 }, 11 "./index.js" 12 ], 8 ".": "./index.js", 13 9 "./package.json": "./package.json" 14 10 }, 15 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 16 13 "prepublishOnly": "safe-publish-latest", 17 14 "prepublish": "not-in-publish || npm run prepublishOnly", 18 15 "version": "auto-changelog && git add CHANGELOG.md", 19 16 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 20 "lint": "eslint .", 17 "lint": "eslint --ext=.js,.mjs .", 18 "postlint": "tsc -P . && attw -P", 21 19 "pretest": "npm run lint", 22 20 "tests-only": "nyc tape 'test/**/*.js'", 23 21 "test": "npm run tests-only", 24 "posttest": " aud--production"22 "posttest": "npx npm@'>=10.2' audit --production" 25 23 }, 26 24 "repository": { … … 44 42 "homepage": "https://github.com/inspect-js/is-finalizationregistry#readme", 45 43 "devDependencies": { 46 "@ljharb/eslint-config": "^18.0.0", 47 "aud": "^1.1.5", 48 "auto-changelog": "^2.3.0", 49 "eslint": "^7.32.0", 44 "@arethetypeswrong/cli": "^0.17.0", 45 "@ljharb/eslint-config": "^21.1.1", 46 "@ljharb/tsconfig": "^0.2.0", 47 "@types/call-bind": "^1.0.5", 48 "@types/for-each": "^0.3.3", 49 "@types/object-inspect": "^1.13.0", 50 "@types/tape": "^5.6.4", 51 "auto-changelog": "^2.5.0", 52 "encoding": "^0.1.13", 53 "eslint": "=8.8.0", 50 54 "for-each": "^0.3.3", 55 "in-publish": "^2.0.1", 56 "npmignore": "^0.3.1", 51 57 "nyc": "^10.3.2", 52 "object-inspect": "^1.11.0", 53 "safe-publish-latest": "^1.1.4", 54 "tape": "^5.3.1" 58 "object-inspect": "^1.13.3", 59 "safe-publish-latest": "^2.0.0", 60 "tape": "^5.9.0", 61 "typescript": "^5.8.0-dev.20241122" 55 62 }, 56 63 "auto-changelog": { … … 63 70 }, 64 71 "dependencies": { 65 "call-bind": "^1.0.2" 72 "call-bind": "^1.0.7" 73 }, 74 "publishConfig": { 75 "ignore": [ 76 ".github/workflows" 77 ] 78 }, 79 "engines": { 80 "node": ">= 0.4" 66 81 } 67 82 }
Note:
See TracChangeset
for help on using the changeset viewer.