Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Commit

Permalink
Merge pull request #5 from mozilla/setup-foundation
Browse files Browse the repository at this point in the history
refactor(app): Closes #1. Setup foundation
  • Loading branch information
thebayesian committed Aug 10, 2014
2 parents 06affbd + 30b6629 commit 600f877
Show file tree
Hide file tree
Showing 29 changed files with 1,813 additions and 7 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"
}
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
dist
.tmp
.sass-cache
bower_components
24 changes: 24 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false
}
}
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- '0.10'
before_script:
- 'gem install sass --version "=3.2.12"'
- 'gem install compass --version "=0.12.2"'
- 'npm install -g bower grunt-cli'
- 'bower install'
6 changes: 6 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# List of Authors, in the npm format:
# Name <email> (url)
Mathew Kallada (https://github.com/kallada)
Glavin Wiechert (https://github.com/Glavin001)
Joel Kuntz (https://github.com/Frozenfire92)
Sarah MacDonald (https://github.com/rainbee2214)
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<a name="0.0.0"></a>
## 0.0.0 (2014-08-10)


#### Bug Fixes

* **travis-ci:** Add installation of SASS and Compass for Travis CI. ([ecf57669](http://github.com/mozilla/seasponge/commit/ecf576692da6de7d8fdb2daee5bc85f6ca6d8000))


#### Features

* **app:**
* Add jsPlumb dependency to app. ([ac2e6c7a](http://github.com/mozilla/seasponge/commit/ac2e6c7aec0a930e82256feac1411bc9fd224c96))
* Generated Angular project in CoffeeScript. ([1146286c](http://github.com/mozilla/seasponge/commit/1146286c84701e6e3e8f37815bc9793b69d83b59))
Loading

0 comments on commit 600f877

Please sign in to comment.