Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
solr-frontend
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c5030dfc
authored
2015-10-01 15:22:23 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use bower to install underscore and backbone.
1 parent
f8db1d4e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletions
.gitignore
bower.json
src/scripts/config.js
.gitignore
View file @
c5030df
...
...
@@ -3,3 +3,4 @@
dist/
.grunt/
node_modules/
src/lib/bower/
...
...
bower.json
0 → 100644
View file @
c5030df
{
"name"
:
"solr-frontend"
,
"version"
:
"0.0.0"
,
"authors"
:
[
"Adam Heath <adam@brainfood.com>"
],
"description"
:
"Solr Frontend"
,
"license"
:
"Apache"
,
"ignore"
:
[
"**/.*"
,
"node_modules"
,
"src/lib/bower"
,
"test"
,
"tests"
],
"dependencies"
:
{
"backbone"
:
"~1.1.2"
,
"underscore"
:
"~1"
,
"requirejs"
:
"~2.1.17"
}
}
src/scripts/config.js
View file @
c5030df
...
...
@@ -6,7 +6,10 @@ require = (function() {
var
require
=
{
baseUrl
:
'scripts'
,
deps
:
[
'main'
],
paths
:
{},
paths
:
{
'backbone'
:
'../lib/bower/backbone/backbone'
,
'underscore'
:
'../lib/bower/underscore/underscore'
,
},
};
return
require
;
})();
...
...
Please
register
or
sign in
to post a comment