From 32287de26a4a0d248b533eaa7b952c0f8798b4a9 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Wed, 10 Jul 2013 16:07:56 -0400 Subject: [PATCH] Added .bowerrc, renamed component.json to bower.json, updated bower.json ignore, updated demo & test.conf.js --- .bowerrc | 3 +++ component.json => bower.json | 2 +- demo/demo.html | 6 +++--- test/test.conf.js | 8 ++++---- 4 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 .bowerrc rename component.json => bower.json (95%) diff --git a/.bowerrc b/.bowerrc new file mode 100644 index 0000000..deceb62 --- /dev/null +++ b/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "bower_components" +} \ No newline at end of file diff --git a/component.json b/bower.json similarity index 95% rename from component.json rename to bower.json index d8780d3..2cf0157 100644 --- a/component.json +++ b/bower.json @@ -9,7 +9,7 @@ "ignore": [ "**/.*", "node_modules", - "components", + "bower_components", "test*", "demo*", "gruntFile.js", diff --git a/demo/demo.html b/demo/demo.html index a6f09a4..cf68345 100644 --- a/demo/demo.html +++ b/demo/demo.html @@ -9,9 +9,9 @@ AngularUI - Date Picker Demo - - - + + + diff --git a/test/test.conf.js b/test/test.conf.js index 1dd0fe4..0dd3027 100644 --- a/test/test.conf.js +++ b/test/test.conf.js @@ -2,10 +2,10 @@ basePath = '..'; files = [ JASMINE, JASMINE_ADAPTER, - 'components/jquery/jquery.js', - 'components/jquery-ui/ui/jquery-ui.custom.js', - 'components/angular/angular.js', - 'components/angular-mocks/angular-mocks.js', + 'bower_components/jquery/jquery.js', + 'bower_components/jquery-ui/ui/jquery-ui.custom.js', + 'bower_components/angular/angular.js', + 'bower_components/angular-mocks/angular-mocks.js', 'src/sortable.js', 'test/*.spec.js' ];