Skip to content

Commit 271142c

Browse files
committed
v0.35.4
1 parent d6a3484 commit 271142c

File tree

7 files changed

+34
-23
lines changed

7 files changed

+34
-23
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# es6-shim 0.35.4 (29 October 2018)
2+
* [Fix] protect against evil build processes by ensuring these feature tests don‘t look like no-ops that are safe to remove
3+
* [Fix] broken `hasULPDistance` → working `withinULPDistance` helper
4+
* [Fix] `acosh`: fix precision (#338)
5+
* [Fix] `Math.{asinh,atanh,cosh,sinh}` precision (from #338)
6+
* [Fix] Google Translate adds a broken `Set` to the global scope (#438)
7+
* [Fix] Distinguish Set and Map iterators (#387)
8+
* [Docs] Tweaking documentation specifying inclusion order (#435)
9+
110
# es6-shim 0.35.3 (23 January 2017)
211
* [Fix] avoid needlessly shimming `Array#{find, findIndex}` (#433)
312
* [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `grunt-saucelabs`

es6-sham.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* https://github.com/paulmillr/es6-shim
33
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
44
* and contributors, MIT License
5-
* es6-sham: v0.35.3
5+
* es6-sham: v0.35.4
66
* see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
77
* Details and documentation:
88
* https://github.com/paulmillr/es6-shim/

es6-sham.min.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

es6-shim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* https://github.com/paulmillr/es6-shim
33
* @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)
44
* and contributors, MIT License
5-
* es6-shim: v0.35.3
5+
* es6-shim: v0.35.4
66
* see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE
77
* Details and documentation:
88
* https://github.com/paulmillr/es6-shim/

es6-shim.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

es6-shim.min.js

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "es6-shim",
3-
"version": "0.35.3",
3+
"version": "0.35.4",
44
"author": "Paul Miller (http://paulmillr.com)",
55
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
66
"keywords": [
@@ -23,6 +23,7 @@
2323
},
2424
"main": "es6-shim",
2525
"scripts": {
26+
"prepublish": "safe-publish-latest && npm run minify",
2627
"pretest": "npm run lint && evalmd *.md",
2728
"test": "npm run tests-only",
2829
"tests-only": "npm run test:shim && npm run test:sham",
@@ -82,6 +83,7 @@
8283
"mocha": "^3.5.3",
8384
"promises-aplus-tests": "^2.1.2",
8485
"promises-es6-tests": "^0.5.0",
86+
"safe-publish-latest": "^1.1.2",
8587
"uglify-js": "2.7.3"
8688
}
8789
}

0 commit comments

Comments
 (0)