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

Commit

Permalink
Improved handling of bower components
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Callaghan committed Aug 13, 2013
1 parent 3c04c32 commit cf82e3d
Show file tree
Hide file tree
Showing 46 changed files with 22 additions and 53,532 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "components"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ pids
logs
results

components
node_modules
npm-debug.log
11 changes: 9 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
}
},

bower: {
options: {
copy: false
},
install: {}
},

jshint: {
options: {
jshintrc: '.jshintrc'
Expand All @@ -50,7 +57,7 @@
}
});

grunt.registerTask('test', 'karma:unit');
grunt.registerTask('build', ['jshint:all', 'karma:dist', 'clean', 'concat:dist', 'uglify:dist']);
grunt.registerTask('test', 'karma:dev');
grunt.registerTask('build', ['jshint:all', 'bower', 'karma:dist', 'clean', 'concat:dist', 'uglify:dist']);
};
})();
7 changes: 3 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "ra-storage",
"version": "0.0.1",
"version": "0.0.2",
"private": true,
"ignore": [
"**/.*",
"components",
"node_modules",
"bower_components",
"test",
"tests"
"test"
],
"dependencies": {
"jquery.cookie": "~1.3.1",
Expand Down
17 changes: 0 additions & 17 deletions bower_components/angular-mocks/.bower.json

This file was deleted.

4 changes: 0 additions & 4 deletions bower_components/angular-mocks/README.md

This file was deleted.

Loading

0 comments on commit cf82e3d

Please sign in to comment.