Bower modules updated.

This commit is contained in:
Andreas Baldeau 2014-08-10 12:02:48 +02:00
commit 1ee78ab657
140 changed files with 7098 additions and 3713 deletions

View file

@ -1,6 +1,6 @@
{
"name": "es5-shim",
"version": "3.4.0",
"version": "4.0.1",
"main": "es5-shim.js",
"repository": {
"type": "git",
@ -32,13 +32,13 @@
"bower_components",
"tests"
],
"_release": "3.4.0",
"_release": "4.0.1",
"_resolution": {
"type": "version",
"tag": "v3.4.0",
"commit": "6751d3f058227ae2450f2f5dd5097d5005c5f93d"
"tag": "v4.0.1",
"commit": "734e4dd80a1e4cbbd3bb6947c79084e86cb1793b"
},
"_source": "git://github.com/es-shims/es5-shim.git",
"_target": "~3.4.0",
"_target": "~4.0.1",
"_originalSource": "es5-shim"
}

View file

@ -1,3 +1,12 @@
4.0.1
- Fix legacy arguments object detection in Object.keys (#260)
4.0.0
- No longer shim the ES5-spec behavior of splice when `deleteCount` is omitted - since no engines implement it, and ES6 changes it. (#255)
- Use Object.defineProperty where available, so that polyfills are non-enumerable when possible (#250)
- lots of internal refactoring
- Fixed a bug referencing String#indexOf and String#lastIndexOf before polyfilling it (#253, #254)
3.4.0
- Removed nonstandard SpiderMonkey extension to Array#splice - when `deleteCount` is omitted, it's now treated as 0. (#192, #239)
- Fix Object.keys with Arguments objects in Safari 5.0

View file

@ -1,6 +1,6 @@
{
"name": "es5-shim",
"version": "3.4.0",
"version": "4.0.1",
"main": "es5-shim.js",
"repository": {
"type": "git",

View file

@ -2,7 +2,7 @@
"name": "es5-shim",
"repo": "es-shims/es5-shim",
"description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
"version": "v3.4.0",
"version": "v4.0.1",
"keywords": [
"shim",
"es5",

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "es5-shim",
"version": "3.4.0",
"version": "4.0.1",
"description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
"homepage": "http://github.com/es-shims/es5-shim/",
"contributors": [
@ -30,13 +30,14 @@
"minify": "npm run minify-shim && npm run minify-sham",
"minify-shim": "uglifyjs es5-shim.js --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js",
"minify-sham": "uglifyjs es5-sham.js --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
"test": "jasmine-node --matchall tests/spec/",
"test": "jasmine-node --matchall ./ tests/spec/",
"test-native": "jasmine-node --matchall tests/spec/",
"lint": "jscs tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js"
},
"devDependencies": {
"jasmine-node": "~1.14.2",
"jscs": "~1.4.5",
"uglify-js": "~2.4.12"
"jasmine-node": "~1.14.5",
"jscs": "~1.5.8",
"uglify-js": "~2.4.14"
},
"engines": {
"node": ">=0.4.0"

View file

@ -1,6 +1,6 @@
{
"Object": {
"prototype": {}
"prototype": {},
"keys": "object-keys"
}
}