Remove submodules and cleanup repo.

Former-commit-id: f3950601f2001ceb4f36db2a7f2efa28acc8472d
This commit is contained in:
John-David Dalton
2012-07-02 15:22:48 -04:00
parent 90e2bd0372
commit c46a36f8ed
9 changed files with 16 additions and 42 deletions

2
.gitignore vendored
View File

@@ -1,4 +1,4 @@
*.custom.* *.custom.*
.DS_Store .DS_Store
dist/ dist/
node_modules/ node_modules/

24
.gitmodules vendored
View File

@@ -1,24 +0,0 @@
[submodule "vendor/benchmark.js"]
path = vendor/benchmark.js
url = git://github.com/bestiejs/benchmark.js.git
[submodule "vendor/docdown"]
path = vendor/docdown
url = git://github.com/jdalton/docdown.git
[submodule "vendor/qunit"]
path = vendor/qunit
url = git://github.com/jquery/qunit.git
[submodule "vendor/qunit-clib"]
path = vendor/qunit-clib
url = git://github.com/jdalton/qunit-clib.git
[submodule "vendor/requirejs"]
path = vendor/requirejs
url = git://github.com/jrburke/requirejs.git
[submodule "vendor/uglifyjs"]
path = vendor/uglifyjs
url = git://github.com/mishoo/UglifyJS.git
[submodule "vendor/underscore"]
path = vendor/underscore
url = git://github.com/documentcloud/underscore.git
[submodule "vendor/backbone"]
path = vendor/backbone
url = git://github.com/documentcloud/backbone.git

View File

@@ -10,10 +10,3 @@ perf/*.html
perf/*.sh perf/*.sh
test/*.html test/*.html
test/*.sh test/*.sh
vendor/backbone/
vendor/closure-compiler/
vendor/docdown/
vendor/firebug-lite/
vendor/requirejs/
vendor/uglifyjs/
vendor/underscore/

View File

@@ -197,10 +197,15 @@ git submodule update --init
* `_.indexOf` * `_.indexOf`
* `_.intersection` * `_.intersection`
* `_.invoke` * `_.invoke`
* `_.isArguments`
* `_.isDate`
* `_.isEmpty` * `_.isEmpty`
* `_.isEqual` * `_.isEqual`
* `_.isFinite` * `_.isFinite`
* `_.isFunction`
* `_.isObject` * `_.isObject`
* `_.isNumber`
* `_.isRegExp`
* `_.isString` * `_.isString`
* `_.keys` * `_.keys`
* `_.lastIndexOf` * `_.lastIndexOf`

View File

@@ -31,16 +31,16 @@
"type": "git", "type": "git",
"url": "https://github.com/bestiejs/lodash.git" "url": "https://github.com/bestiejs/lodash.git"
}, },
"scripts": { "directories": {
"build": "node build", "doc": "./doc",
"test": "node test/test" "test": "./test"
}, },
"engines": [ "engines": [
"node", "node",
"rhino" "rhino"
], ],
"directories": { "scripts": {
"doc": "./doc", "build": "node build",
"test": "./test" "test": "node test/test"
} }
} }

View File

@@ -35,4 +35,4 @@
<script src="../vendor/backbone/test/view.js"></script> <script src="../vendor/backbone/test/view.js"></script>
<script src="../vendor/backbone/test/sync.js"></script> <script src="../vendor/backbone/test/sync.js"></script>
</body> </body>
</html> </html>

View File

@@ -50,4 +50,4 @@
} }
</script> </script>
</body> </body>
</html> </html>

View File

@@ -6,4 +6,4 @@ for cmd in rhino ringo narwhal node; do
done done
echo "" echo ""
echo "Testing in a browser..." echo "Testing in a browser..."
open index.html open index.html

View File

@@ -36,4 +36,4 @@
<li><%= data %></li> <li><%= data %></li>
</script> </script>
</body> </body>
</html> </html>