airbnb-js-shims
Advanced tools
Comparing version 1.4.1 to 1.5.0
@@ -0,1 +1,8 @@ | ||
1.5.0 / 2018-05-22 | ||
================= | ||
* [New] add `array.prototype.flat`, deprecate `Array.prototype.flatten` | ||
* [New] add `symbol.prototype.description` | ||
* [Deps] update `array.prototype.flatten`, `array.prototype.flatmap` | ||
* [Dev Deps] update `eslint`, `eslint-plugin-import`, `nsp`, `tape` | ||
1.4.1 / 2018-01-24 | ||
@@ -2,0 +9,0 @@ ================= |
{ | ||
"name": "airbnb-js-shims", | ||
"version": "1.4.1", | ||
"version": "1.5.0", | ||
"description": "JS language shims used by Airbnb.", | ||
@@ -11,3 +11,4 @@ "main": "index.js", | ||
"test": "npm run tests-only", | ||
"tests-only": "node test" | ||
"tests-only": "node test", | ||
"posttest": "nsp check" | ||
}, | ||
@@ -26,4 +27,5 @@ "repository": { | ||
"array-includes": "^3.0.3", | ||
"array.prototype.flatmap": "^1.2.0", | ||
"array.prototype.flatten": "^1.2.0", | ||
"array.prototype.flat": "^1.2.1", | ||
"array.prototype.flatmap": "^1.2.1", | ||
"array.prototype.flatten": "^1.2.1", | ||
"es5-shim": "^4.5.10", | ||
@@ -37,10 +39,12 @@ "es6-shim": "^0.35.3", | ||
"string.prototype.padend": "^3.0.0", | ||
"string.prototype.padstart": "^3.0.0" | ||
"string.prototype.padstart": "^3.0.0", | ||
"symbol.prototype.description": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^4.16.0", | ||
"eslint": "^4.19.1", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-import": "^2.12.0", | ||
"nsp": "^3.2.1", | ||
"safe-publish-latest": "^1.1.1", | ||
"tape": "^4.8.0" | ||
"tape": "^4.9.0" | ||
}, | ||
@@ -47,0 +51,0 @@ "publishConfig": { |
@@ -23,4 +23,6 @@ # airbnb-js-shims <sup>[![Version Badge][2]][1]</sup> | ||
- [Promise.prototype.finally](https://npmjs.com/package/promise.prototype.finally) (Stage 4, ES2018) | ||
- [Array.prototype.flatten](https://npmjs.com/package/array.prototype.flatten) (Stage 3, ES2018 candidate) | ||
- [Array.prototype.flatMap](https://npmjs.com/package/array.prototype.flatMap) (Stage 3, ES2018 candidate) | ||
- [Array.prototype.flat](https://npmjs.com/package/array.prototype.flat) (Stage 3, ES2019 candidate) | ||
- (DEPRECATED: renamed to "flat") [Array.prototype.flatten](https://npmjs.com/package/array.prototype.flatten) (Stage 3, ES2019 candidate) | ||
- [Array.prototype.flatMap](https://npmjs.com/package/array.prototype.flatMap) (Stage 3, ES2019 candidate) | ||
- [Symbol.prototype.description](https://npmjs.com/package/symbol.prototype.description) (Stage 3, ES2019 candidate) | ||
@@ -27,0 +29,0 @@ ## Targeting versions |
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
12948
46
14
6
13
+ Addedarray.prototype.flat@^1.2.1
+ Addedarray.prototype.flat@1.3.3(transitive)
+ Addedsymbol.prototype.description@1.0.7(transitive)