Skip to content

Commit

Permalink
Check-in components.
Browse files Browse the repository at this point in the history
It's an anti-pattern but I want to be able to deploy with GH pages.
  • Loading branch information
MarkBennett committed Apr 3, 2013
1 parent ee9e680 commit bf901f4
Show file tree
Hide file tree
Showing 107 changed files with 19,274 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,2 +1 @@
node_modules
components
1 change: 1 addition & 0 deletions components/q/.coverignore
@@ -0,0 +1 @@
spec/
9 changes: 9 additions & 0 deletions components/q/.gitignore
@@ -0,0 +1,9 @@
node_modules
npm-debug.log
CHANGES.html
README.html
.tmp

.coverage_data/
.coverage_debug/
cover_html/
24 changes: 24 additions & 0 deletions components/q/.jshintrc
@@ -0,0 +1,24 @@
{
"browser": true,
"node": true,

"curly": true,
"eqeqeq": true,
"newcap": true,
"noarg": true,
"nonew": true,
"quotmark": "double",
"trailing": true,
"undef": true,
"unused": true,

"globals": {
"bootstrap": false,
"cajaVM": false,
"define": false,
"Q": true,
"ReturnValue": false,
"ses": false,
"setImmediate": false
}
}
2 changes: 2 additions & 0 deletions components/q/.mailmap
@@ -0,0 +1,2 @@
Domenic Denicola <domenic@domenicdenicola.com>
Kris Kowal <kris.kowal@cixar.com>
24 changes: 24 additions & 0 deletions components/q/.npmignore
@@ -0,0 +1,24 @@
node_modules
npm-debug.log
CHANGES.html
README.html

.coverage_data/
.coverage_debug/
.tmp
cover_html/

design
examples
spec
.coverignore
.jshintrc
.mailmap
.npmignore
.travis.yml
CHANGES.md
VERSIONS.md
q.min.js
q.min.js.gz
ref_send.md
minify
4 changes: 4 additions & 0 deletions components/q/.travis.yml
@@ -0,0 +1,4 @@
language: node_js
node_js:
- 0.6
- 0.8

0 comments on commit bf901f4

Please sign in to comment.