From 46d1e8f29c3c85486c0e76f6ccf6430cfe4d3be3 Mon Sep 17 00:00:00 2001 From: Salvatore Iovene Date: Tue, 30 Apr 2013 10:04:00 +0300 Subject: [PATCH] Migrate from underscore to lodash. --- .gitmodules | 6 +++--- Gruntfile.js | 2 +- lib/lodash | 1 + lib/underscore | 1 - tests/index.html | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) create mode 160000 lib/lodash delete mode 160000 lib/underscore diff --git a/.gitmodules b/.gitmodules index e8b5ed5..25d7611 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,9 +7,9 @@ [submodule "lib/jquery-ui"] path = lib/jquery-ui url = git://github.com/jquery/jquery-ui.git -[submodule "lib/underscore"] - path = lib/underscore - url = git://github.com/documentcloud/underscore.git [submodule "lib/qunit"] path = lib/qunit url = git://github.com/jquery/qunit.git +[submodule "lib/lodash"] + path = lib/lodash + url = git://github.com/bestiejs/lodash.git diff --git a/Gruntfile.js b/Gruntfile.js index f706744..3ad772f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -87,7 +87,7 @@ module.exports = function(grunt) { src: [ 'lib/jquery/dist/jquery.js', 'lib/jquery-ui/dist/jquery-ui.js', - 'lib/underscore/underscore.js', + 'lib/lodash/lodash.js', // Bootstrap files must preserve order. 'src/bootstrap/js/bootstrap-transition.js', diff --git a/lib/lodash b/lib/lodash new file mode 160000 index 0000000..1b7be39 --- /dev/null +++ b/lib/lodash @@ -0,0 +1 @@ +Subproject commit 1b7be39d1fa64d94fd22c2593550f890de5d105e diff --git a/lib/underscore b/lib/underscore deleted file mode 160000 index bf1bddd..0000000 --- a/lib/underscore +++ /dev/null @@ -1 +0,0 @@ -Subproject commit bf1bddd38d8ffefac152f85fe74fa80767868f84 diff --git a/tests/index.html b/tests/index.html index 695c8c1..4b1d23b 100644 --- a/tests/index.html +++ b/tests/index.html @@ -6,7 +6,7 @@ - + -- 2.7.4