diff --git a/.gitignore b/.gitignore index 000dbab4b..d415f6fe2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ modularize node_modules dist/*.backbone.* dist/*.legacy.* +dist/*.mobile.* diff --git a/.jamignore b/.jamignore index 50ae54331..20ea2891e 100644 --- a/.jamignore +++ b/.jamignore @@ -1,10 +1,6 @@ .* -*.custom.* -*.min.* -*.template.* -*.map *.md -lodash.js +/lodash.js index.js bower.json component.json diff --git a/bower.json b/bower.json index c311b8161..1af2905f1 100644 --- a/bower.json +++ b/bower.json @@ -1,16 +1,15 @@ { "name": "lodash", - "version": "1.3.1", + "version": "2.0.0", "main": "./dist/lodash.compat.js", "ignore": [ ".*", "*.custom.*", - "*.min.*", "*.template.*", "*.map", "*.md", - "*.txt", - "lodash.js", + "/*.min.*", + "/lodash.js", "index.js", "component.json", "package.json", diff --git a/component.json b/component.json index fd6c09ae7..af014a937 100644 --- a/component.json +++ b/component.json @@ -1,20 +1,12 @@ { "name": "lodash", "repo": "lodash/lodash", - "version": "1.3.1", + "version": "2.0.0", "description": "A utility library delivering consistency, customization, performance, and extras.", "license": "MIT", + "keywords": ["amd", "browser", "client", "customize", "functional", "performance", "server", "speed", "util"], "scripts": [ "index.js", "dist/lodash.compat.js" - ], - "keywords": [ - "browser", - "client", - "functional", - "performance", - "server", - "speed", - "util" ] }