es-object-atoms
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -8,2 +8,11 @@ # Changelog | ||
## [v1.0.1](https://github.com/ljharb/es-object-atoms/compare/v1.0.0...v1.0.1) - 2025-01-13 | ||
### Commits | ||
- [Dev Deps] update `@ljharb/eslint-config`, `@ljharb/tsconfig`, `@types/tape`, `auto-changelog`, `tape` [`38ab9eb`](https://github.com/ljharb/es-object-atoms/commit/38ab9eb00b62c2f4668644f5e513d9b414ebd595) | ||
- [types] improve types [`7d1beb8`](https://github.com/ljharb/es-object-atoms/commit/7d1beb887958b78b6a728a210a1c8370ab7e2aa1) | ||
- [Tests] replace `aud` with `npm audit` [`25863ba`](https://github.com/ljharb/es-object-atoms/commit/25863baf99178f1d1ad33d1120498db28631907e) | ||
- [Dev Deps] add missing peer dep [`c012309`](https://github.com/ljharb/es-object-atoms/commit/c0123091287e6132d6f4240496340c427433df28) | ||
## v1.0.0 - 2024-03-16 | ||
@@ -10,0 +19,0 @@ |
{ | ||
"name": "es-object-atoms", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "ES Object-related atoms: Object, ToObject, RequireObjectCoercible", | ||
@@ -20,3 +20,3 @@ "main": "index.js", | ||
"tests-only": "nyc tape 'test/**/*.js'", | ||
"posttest": "aud --production", | ||
"posttest": "npx npm@\">= 10.2\" audit --production", | ||
"prelint": "evalmd README.md", | ||
@@ -49,8 +49,8 @@ "lint": "eslint --ext=js,mjs .", | ||
"devDependencies": { | ||
"@ljharb/eslint-config": "^21.1.0", | ||
"@ljharb/tsconfig": "^0.2.0", | ||
"@types/tape": "^5.6.4", | ||
"aud": "^2.0.4", | ||
"auto-changelog": "^2.4.0", | ||
"@ljharb/eslint-config": "^21.1.1", | ||
"@ljharb/tsconfig": "^0.2.3", | ||
"@types/tape": "^5.8.1", | ||
"auto-changelog": "^2.5.0", | ||
"eclint": "^2.8.1", | ||
"encoding": "^0.1.13", | ||
"eslint": "^8.8.0", | ||
@@ -62,3 +62,3 @@ "evalmd": "^0.0.19", | ||
"safe-publish-latest": "^2.0.0", | ||
"tape": "^5.7.5", | ||
"tape": "^5.9.0", | ||
"typescript": "next" | ||
@@ -65,0 +65,0 @@ }, |
@@ -1,3 +0,3 @@ | ||
declare function RequireObjectCoercible<T extends {} = {}>(value: T, optMessage?: string): T; | ||
declare function RequireObjectCoercible<T extends {}>(value: T, optMessage?: string): T; | ||
export = RequireObjectCoercible; | ||
export = RequireObjectCoercible; |
@@ -1,3 +0,3 @@ | ||
declare function ToObject<T = {}>(value: T extends object ? T : {}): T extends object ? T : object; | ||
declare function ToObject<T extends {}>(value: T): T & object; | ||
export = ToObject; | ||
export = ToObject; |
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
9877
54