Comparing version
@@ -8,2 +8,27 @@ # Changelog | ||
## [v1.1.6](https://github.com/es-shims/object-is/compare/v1.1.5...v1.1.6) - 2024-02-27 | ||
### Commits | ||
- [actions] reuse common workflows [`f8d0c06`](https://github.com/es-shims/object-is/commit/f8d0c0617901b4b220f2bbbaff8c9ec7f22891c6) | ||
- [actions] use `node/install` instead of `node/run` [`90fc019`](https://github.com/es-shims/object-is/commit/90fc01955dc677fef745f0dc4164e2144b047997) | ||
- [actions] update workflows [`37339d8`](https://github.com/es-shims/object-is/commit/37339d870aacad9f524cb685c0075aed78e9bd6e) | ||
- [meta] use `npmignore` to autogenerate an npmignore file [`a257c19`](https://github.com/es-shims/object-is/commit/a257c19d55c275ac44892b1d2d98a5d06e976943) | ||
- [readme] fix badges [`50af053`](https://github.com/es-shims/object-is/commit/50af053d4d8ee02657d71f784c31b372905187a7) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `safe-publish-latest`, `tape` [`86058c6`](https://github.com/es-shims/object-is/commit/86058c65153dea90d18ff969244bdc610f382046) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `functions-have-names`, `has-symbols`, `tape` [`d5484eb`](https://github.com/es-shims/object-is/commit/d5484eb02a44482de29ce95ccfd01e885d0ff83b) | ||
- [actions] update rebase action to use reusable workflow [`68075c5`](https://github.com/es-shims/object-is/commit/68075c5bd0e35b51e815e7fd95bb90cc54deb699) | ||
- [actions] update codecov uploader [`f12fbb2`](https://github.com/es-shims/object-is/commit/f12fbb2f23b43c2d982fd00c95ff98b01e8747a1) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `auto-changelog`, `has-symbols`, `tape` [`43eb235`](https://github.com/es-shims/object-is/commit/43eb235ffa1dd258ff5ef990fd2f0ce78ce40ccc) | ||
- [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `aud`, `npmignore`, `tape` [`f306966`](https://github.com/es-shims/object-is/commit/f306966e53fac2e24dd11dfe6cf31a8ae20a08da) | ||
- [readme] add actions and codecov badges [`e443b4a`](https://github.com/es-shims/object-is/commit/e443b4a3d0b01683cb6fec59916ad4ec463e9de7) | ||
- [readme] remove travis badge [`5165adc`](https://github.com/es-shims/object-is/commit/5165adccf9e8373f38a01e7a5887b42a4229ca2b) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape` [`e7ccf56`](https://github.com/es-shims/object-is/commit/e7ccf56f84434f6671fae1d1fe4945f5b3a84120) | ||
- [Deps] update `call-bind`, `define-properties` [`a3052db`](https://github.com/es-shims/object-is/commit/a3052db9e272c5d544553a7f43c916689e8cca9a) | ||
- [readme] fix URLs [`ac37ea6`](https://github.com/es-shims/object-is/commit/ac37ea68b2a11ef7ebff694e6c4f308c735240ea) | ||
- [readme] assert.notOk -> assert.equal [`7fe769f`](https://github.com/es-shims/object-is/commit/7fe769fc8293d8756ed2d31c4d12afc0581498b7) | ||
- [Deps] update `call-bind` [`b965cd3`](https://github.com/es-shims/object-is/commit/b965cd319e1c397a5ef7dc6dffc9a5bd4329d408) | ||
- [Dev Deps] update `tape` [`a737830`](https://github.com/es-shims/object-is/commit/a737830a051cdc650c3bfb78b085586c9fd7cd13) | ||
- [Deps] update `define-properties`, `es-abstract` [`441eafb`](https://github.com/es-shims/object-is/commit/441eafbca4e32d76dc16bea6b73ee794296e2c0c) | ||
## [v1.1.5](https://github.com/es-shims/object-is/compare/v1.1.4...v1.1.5) - 2021-02-20 | ||
@@ -10,0 +35,0 @@ |
{ | ||
"name": "object-is", | ||
"version": "1.1.5", | ||
"version": "1.1.6", | ||
"description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0", | ||
@@ -12,3 +12,5 @@ "author": "Jordan Harband", | ||
"scripts": { | ||
"prepublish": "safe-publish-latest", | ||
"prepack": "npmignore --auto --commentLines=autogenerated", | ||
"prepublishOnly": "safe-publish-latest", | ||
"prepublish": "not-in-publish || npm run prepublishOnly", | ||
"pretest": "npm run lint", | ||
@@ -18,3 +20,3 @@ "tests-only": "nyc tape 'test/**/*.js'", | ||
"posttest": "aud --production", | ||
"lint": "eslint .", | ||
"lint": "eslint --ext=js,mjs .", | ||
"postlint": "es-shim-api --bound", | ||
@@ -44,16 +46,18 @@ "version": "auto-changelog && git add CHANGELOG.md", | ||
"dependencies": { | ||
"call-bind": "^1.0.2", | ||
"define-properties": "^1.1.3" | ||
"call-bind": "^1.0.7", | ||
"define-properties": "^1.2.1" | ||
}, | ||
"devDependencies": { | ||
"@es-shims/api": "^2.1.2", | ||
"@ljharb/eslint-config": "^17.5.1", | ||
"aud": "^1.1.4", | ||
"auto-changelog": "^2.2.1", | ||
"eslint": "^7.20.0", | ||
"functions-have-names": "^1.2.2", | ||
"has-symbols": "^1.0.1", | ||
"@es-shims/api": "^2.4.2", | ||
"@ljharb/eslint-config": "^21.1.0", | ||
"aud": "^2.0.4", | ||
"auto-changelog": "^2.4.0", | ||
"eslint": "=8.8.0", | ||
"functions-have-names": "^1.2.3", | ||
"has-symbols": "^1.0.3", | ||
"in-publish": "^2.0.1", | ||
"npmignore": "^0.3.1", | ||
"nyc": "^10.3.2", | ||
"safe-publish-latest": "^1.1.4", | ||
"tape": "^5.2.0" | ||
"safe-publish-latest": "^2.0.0", | ||
"tape": "^5.7.5" | ||
}, | ||
@@ -89,3 +93,8 @@ "testling": { | ||
"hideCredit": true | ||
}, | ||
"publishConfig": { | ||
"ignore": [ | ||
".github/workflows" | ||
] | ||
} | ||
} |
@@ -1,10 +0,9 @@ | ||
#object-is <sup>[![Version Badge][2]][1]</sup> | ||
# object-is <sup>[![Version Badge][npm-version-svg]][package-url]</sup> | ||
[![Build Status][3]][4] | ||
[![dependency status][5]][6] | ||
[![dev dependency status][7]][8] | ||
[![github actions][actions-image]][actions-url] | ||
[![coverage][codecov-image]][codecov-url] | ||
[![License][license-image]][license-url] | ||
[![Downloads][downloads-image]][downloads-url] | ||
[![npm badge][11]][1] | ||
[![npm badge][npm-badge-png]][package-url] | ||
@@ -33,7 +32,7 @@ ES2015-compliant shim for Object.is - differentiates between -0 and +0, and can compare to NaN. | ||
assert.ok(Object.is(arr, arr)); | ||
assert.notOk(Object.is(arr, [1, 2])); | ||
assert.equal(Object.is(arr, [1, 2]), false); | ||
assert.ok(Object.is(0, 0)); | ||
assert.ok(Object.is(-0, -0)); | ||
assert.notOk(Object.is(0, -0)); | ||
assert.equal(Object.is(0, -0), false); | ||
@@ -48,15 +47,16 @@ assert.ok(Object.is(NaN, NaN)); | ||
[1]: https://npmjs.org/package/object-is | ||
[2]: http://versionbadg.es/es-shims/object-is.svg | ||
[3]: https://travis-ci.org/es-shims/object-is.svg | ||
[4]: https://travis-ci.org/es-shims/object-is | ||
[5]: https://david-dm.org/es-shims/object-is.svg | ||
[6]: https://david-dm.org/es-shims/object-is | ||
[7]: https://david-dm.org/es-shims/object-is/dev-status.svg | ||
[8]: https://david-dm.org/es-shims/object-is#info=devDependencies | ||
[11]: https://nodei.co/npm/object-is.png?downloads=true&stars=true | ||
[license-image]: http://img.shields.io/npm/l/object-is.svg | ||
[package-url]: https://npmjs.com/package/object-is | ||
[npm-version-svg]: https://versionbadg.es/es-shims/object-is.svg | ||
[deps-svg]: https://david-dm.org/es-shims/object-is.svg | ||
[deps-url]: https://david-dm.org/es-shims/object-is | ||
[dev-deps-svg]: https://david-dm.org/es-shims/object-is/dev-status.svg | ||
[dev-deps-url]: https://david-dm.org/es-shims/object-is#info=devDependencies | ||
[npm-badge-png]: https://nodei.co/npm/object-is.png?downloads=true&stars=true | ||
[license-image]: https://img.shields.io/npm/l/object-is.svg | ||
[license-url]: LICENSE | ||
[downloads-image]: http://img.shields.io/npm/dm/object-is.svg | ||
[downloads-url]: http://npm-stat.com/charts.html?package=object-is | ||
[downloads-image]: https://img.shields.io/npm/dm/object-is.svg | ||
[downloads-url]: https://npm-stat.com/charts.html?package=object-is | ||
[codecov-image]: https://codecov.io/gh/es-shims/object-is/branch/main/graphs/badge.svg | ||
[codecov-url]: https://app.codecov.io/gh/es-shims/object-is/ | ||
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/object-is | ||
[actions-url]: https://github.com/es-shims/object-is/actions |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
27025
15.81%12
20%15
-6.25%Updated
Updated