string.prototype.split
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -8,2 +8,18 @@ # Changelog | ||
## [v1.0.5](https://github.com/es-shims/String.prototype.split/compare/v1.0.4...v1.0.5) - 2021-10-04 | ||
### Commits | ||
- [actions] use `node/install` instead of `node/run`; use `codecov` action [`dd30e86`](https://github.com/es-shims/String.prototype.split/commit/dd30e869165ac434aafe81815d28106dfab33f17) | ||
- [Refactor] remove ESM entry points [`928c49d`](https://github.com/es-shims/String.prototype.split/commit/928c49d82105e40ae310b0e5555e48d5455a9eac) | ||
- [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `@es-shims/api`, `aud`, `auto-changelog`, `tape` [`98d6443`](https://github.com/es-shims/String.prototype.split/commit/98d6443af088b9b82df2c350543a3df672b66e1e) | ||
- [Deps] update `es-abstract`, `is-regex` [`0e0c732`](https://github.com/es-shims/String.prototype.split/commit/0e0c732db9a61a33745da07232f97172c04b8ab0) | ||
- [readme] add github actions/codecov badges [`8f121f2`](https://github.com/es-shims/String.prototype.split/commit/8f121f216f828b89043aa2fedcb8ef83ca9750fe) | ||
- [actions] update workflows [`deb519b`](https://github.com/es-shims/String.prototype.split/commit/deb519b77aa65254e378a88b93bcd4b7f7c5e2f6) | ||
- [Dev Deps] update `eslint`, `tape` [`c5c02a6`](https://github.com/es-shims/String.prototype.split/commit/c5c02a629f934b7282f5e18d9e14afff19ea6ef9) | ||
- [meta] use `prepublishOnly` script for npm 7+ [`bca1b3d`](https://github.com/es-shims/String.prototype.split/commit/bca1b3d27a262e178bb8d511c08dd9f1e44ecb1f) | ||
- [Tests] fix `nyc@10` with `node` `v12.2` - `v12.15` [`e162f03`](https://github.com/es-shims/String.prototype.split/commit/e162f038bd1b4815e6bb892522631670585c3216) | ||
- [Deps] update `es-abstract` [`8c90fe4`](https://github.com/es-shims/String.prototype.split/commit/8c90fe47a94f1319ba516a06171b1669a77ae061) | ||
- [Fix] add `auto` entry point to "exports" [`8d7e4ec`](https://github.com/es-shims/String.prototype.split/commit/8d7e4ec0428fd261f86163d13d56a5904047cbf9) | ||
## [v1.0.4](https://github.com/es-shims/String.prototype.split/compare/v1.0.3...v1.0.4) - 2021-02-21 | ||
@@ -10,0 +26,0 @@ |
@@ -6,3 +6,3 @@ 'use strict'; | ||
var callBound = require('call-bind/callBound'); | ||
var ToUint32 = require('es-abstract/2020/ToUint32'); | ||
var ToUint32 = require('es-abstract/2021/ToUint32'); | ||
var regexFlags = require('regexp.prototype.flags'); | ||
@@ -9,0 +9,0 @@ var isRegex = require('is-regex'); |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var callBind = require('call-bind'); | ||
var RequireObjectCoercible = require('es-abstract/2020/RequireObjectCoercible'); | ||
var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible'); | ||
@@ -8,0 +8,0 @@ var implementation = require('./implementation'); |
{ | ||
"name": "string.prototype.split", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "An ES spec-compliant `String.prototype.split` shim/polyfill/replacement that works as far down as ES3", | ||
@@ -15,34 +15,15 @@ "main": "index.js", | ||
], | ||
"./polyfill": [ | ||
{ | ||
"import": "./polyfill.mjs", | ||
"require": "./polyfill.js", | ||
"default": "./polyfill.js" | ||
}, | ||
"./polyfill.js" | ||
], | ||
"./implementation": [ | ||
{ | ||
"import": "./implementation.mjs", | ||
"require": "./implementation.js", | ||
"default": "./implementation.js" | ||
}, | ||
"./implementation.js" | ||
], | ||
"./shim": [ | ||
{ | ||
"import": "./shim.mjs", | ||
"require": "./shim.js", | ||
"default": "./shim.js" | ||
}, | ||
"./shim.js" | ||
], | ||
"./auto": "./auto.js", | ||
"./polyfill": "./polyfill.js", | ||
"./implementation": "./implementation.js", | ||
"./shim": "./shim.js", | ||
"./package.json": "./package.json" | ||
}, | ||
"scripts": { | ||
"prepublish": "safe-publish-latest", | ||
"prepublish": "not-in-publish || npm run prepublishOnly", | ||
"prepublishOnly": "safe-publish-latest", | ||
"lint": "eslint --ext=js,mjs .", | ||
"postlint": "es-shim-api --bound", | ||
"pretest": "npm run lint", | ||
"tests-only": "nyc tape 'test/*.js'", | ||
"tests-only": "nyc --exclude='**/*.mjs' tape 'test/*.js'", | ||
"tests-esm": "nyc node test/index.mjs", | ||
@@ -76,13 +57,13 @@ "test": "npm run tests-only && npm run tests-esm", | ||
"define-properties": "^1.1.3", | ||
"es-abstract": "^1.18.0-next.2", | ||
"es-abstract": "^1.19.1", | ||
"get-intrinsic": "^1.1.1", | ||
"is-regex": "^1.1.2", | ||
"is-regex": "^1.1.4", | ||
"regexp.prototype.flags": "^1.3.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", | ||
"@es-shims/api": "^2.2.2", | ||
"@ljharb/eslint-config": "^18.0.0", | ||
"aud": "^1.1.5", | ||
"auto-changelog": "^2.3.0", | ||
"eslint": "^7.32.0", | ||
"functions-have-names": "^1.2.2", | ||
@@ -92,3 +73,3 @@ "has-strict-mode": "^1.0.1", | ||
"safe-publish-latest": "^1.1.4", | ||
"tape": "^5.2.0" | ||
"tape": "^5.3.1" | ||
}, | ||
@@ -95,0 +76,0 @@ "auto-changelog": { |
# string.prototype.split <sup>[![Version Badge][npm-version-svg]][package-url]</sup> | ||
[![github actions][actions-image]][actions-url] | ||
[![coverage][codecov-image]][codecov-url] | ||
[![dependency status][deps-svg]][deps-url] | ||
@@ -60,1 +62,5 @@ [![dev dependency status][dev-deps-svg]][dev-deps-url] | ||
[downloads-url]: https://npm-stat.com/charts.html?package=string.prototype.split | ||
[codecov-image]: https://codecov.io/gh/es-shims/String.prototype.split/branch/main/graphs/badge.svg | ||
[codecov-url]: https://app.codecov.io/gh/es-shims/String.prototype.split/ | ||
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/String.prototype.split | ||
[actions-url]: https://github.com/es-shims/String.prototype.split/actions |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
28133
66
19
350
Updatedes-abstract@^1.19.1
Updatedis-regex@^1.1.4