Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 32287de

Browse files
committed
Added .bowerrc, renamed component.json to bower.json, updated bower.json ignore, updated demo & test.conf.js
1 parent e726c80 commit 32287de

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

component.json renamed to bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"ignore": [
1010
"**/.*",
1111
"node_modules",
12-
"components",
12+
"bower_components",
1313
"test*",
1414
"demo*",
1515
"gruntFile.js",

demo/demo.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<title>AngularUI - Date Picker Demo</title>
1010
<base href=".."></base>
1111
<link rel="stylesheet" href="components/jquery-ui/themes/smoothness/jquery-ui.css">
12-
<script type="text/javascript" src="components/jquery/jquery.js"></script>
13-
<script type="text/javascript" src="components/jquery-ui/ui/jquery-ui.custom.js"></script>
14-
<script type="text/javascript" src="components/angular/angular.js"></script>
12+
<script type="text/javascript" src="bower_components/jquery/jquery.js"></script>
13+
<script type="text/javascript" src="bower_components/jquery-ui/ui/jquery-ui.custom.js"></script>
14+
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
1515
<script type="text/javascript" src="src/date.js"></script>
1616
</head>
1717
<body ng-app="ui.date">

test/test.conf.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ basePath = '..';
22
files = [
33
JASMINE,
44
JASMINE_ADAPTER,
5-
'components/jquery/jquery.js',
6-
'components/jquery-ui/ui/jquery-ui.custom.js',
7-
'components/angular/angular.js',
8-
'components/angular-mocks/angular-mocks.js',
5+
'bower_components/jquery/jquery.js',
6+
'bower_components/jquery-ui/ui/jquery-ui.custom.js',
7+
'bower_components/angular/angular.js',
8+
'bower_components/angular-mocks/angular-mocks.js',
99
'src/sortable.js',
1010
'test/*.spec.js'
1111
];

0 commit comments

Comments
 (0)