Skip to content

Commit

Permalink
Reorganized code, added test, added formatting, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Karl committed Nov 4, 2015
1 parent 7b48a7f commit 0d6bb13
Show file tree
Hide file tree
Showing 17 changed files with 717 additions and 493 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
@@ -0,0 +1,3 @@
{
"directory": "components"
}
10 changes: 10 additions & 0 deletions .editorconfig
@@ -0,0 +1,10 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://EditorConfig.org
root = true

[**.js]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
8 changes: 8 additions & 0 deletions .jsbeautifyrc
@@ -0,0 +1,8 @@
{
"js":
{
"braceStyle": "expand",
"indentWithTabs": true,
"endWithNewline": false
}
}
3 changes: 2 additions & 1 deletion Gruntfile.js
@@ -1,6 +1,7 @@
module.exports = function(grunt)
{
require('library-grunt')(grunt, {
require('library-grunt')(grunt,
{
themePath: '../SpringRollTheme'
});
};
15 changes: 11 additions & 4 deletions bower.json
@@ -1,12 +1,17 @@
{
"name": "Bellhop",
"version": "1.1.8",
"version": "1.2.0",
"main": "dist/bellhop.min.js",
"dependencies": {
"dependencies":
{
"bind-polyfill": "*"
},
"devDependencies": {
"jquery": "*"
"devDependencies":
{
"jquery": "*",
"qunit": "*",
"google-code-prettify": "*",
"bind-polyfill": "*"
},
"ignore": [
"src",
Expand All @@ -16,6 +21,8 @@
"Gruntfile.js",
".travis.yml",
"library.json",
".jsbeautifyrc",
".editorconfig",
".gitignore",
".gitattributes"
]
Expand Down

0 comments on commit 0d6bb13

Please sign in to comment.