Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
feat(.bowerrc): add .bowerrc
Browse files Browse the repository at this point in the history
add .bowerrc to define component directory
update karma.conf.js to search for libs in bower_components folder

Closes #16
  • Loading branch information
0x-r4bbit committed Apr 26, 2013
1 parent b1be575 commit 42363ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
8 changes: 4 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ basePath = '';
files = [
JASMINE,
JASMINE_ADAPTER,
'components/angular/angular.min.js',
'components/angular-cookies/angular-cookies.min.js',
'components/angular-mocks/angular-mocks.js',
'bower_components/angular/angular.min.js',
'bower_components/angular-cookies/angular-cookies.min.js',
'bower_components/angular-mocks/angular-mocks.js',
'ngTranslate/translate.js',
'ngTranslate/**/*.js',
'test/**/*Spec.js'
Expand All @@ -21,7 +21,7 @@ files = [

// list of files to exclude
exclude = [

];


Expand Down

0 comments on commit 42363ee

Please sign in to comment.