Skip to content

Commit

Permalink
grunt, travis, jshint, etc. added.
Browse files Browse the repository at this point in the history
  • Loading branch information
muaz-khan committed Nov 19, 2014
1 parent 4d1bff7 commit 602b49e
Show file tree
Hide file tree
Showing 32 changed files with 6,129 additions and 3,325 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Node
node_modules

# bower
bower_components
31 changes: 31 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"browser": true,
"camelcase": true,
"curly": true,
"devel": true,
"eqeqeq": true,
"forin": false,
"globalstrict": true,
"quotmark": "single",
"undef": true,
"globals": {
"RecordRTC": true,
"MRecordRTC": true,
"Storage": true,
"StereoRecorder": true,
"StereoAudioRecorder": true,
"CanvasRecorder": true,
"WhammyRecorder": true,
"Whammy": true,
"DiskStorage": true,
"GifRecorder": true,
"requestAnimationFrame": true,
"cancelAnimationFrame": true,
"AudioContext": true,
"URL": true,
"IsChrome": true,
"mergeProps": true,
"reformatProps": true,
"bytesToSize": true
}
}
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lib-cov
npm-debug.log
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: node_js
node_js:
- "0.11"
install: npm install
before_script:
- npm install grunt-cli
- npm install grunt
- grunt
matrix:
fast_finish: true
Loading

0 comments on commit 602b49e

Please sign in to comment.