Skip to content

Commit facae4a

Browse files
committed
Merge pull request #18 from feathersjs/pre-release
Release 2.0.0. Closes #1, #2, #6, #12, #15, #17.
2 parents b0f891d + ac56d92 commit facae4a

File tree

19 files changed

+1208
-528
lines changed

19 files changed

+1208
-528
lines changed

.codeclimate.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
languages:
2+
JavaScript: true
3+
# exclude_paths:
4+
# - "foo/bar.rb"

.editorconfig

Lines changed: 0 additions & 13 deletions
This file was deleted.

.jshintrc

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
{
2-
"node": true,
3-
"esnext": true,
4-
"bitwise": true,
5-
"camelcase": true,
6-
"curly": true,
7-
"eqeqeq": true,
8-
"immed": true,
9-
"indent": 4,
10-
"latedef": "nofunc",
11-
"newcap": true,
12-
"noarg": true,
13-
"quotmark": "single",
14-
"regexp": true,
15-
"undef": true,
16-
"unused": true,
17-
"strict": false,
18-
"trailing": true,
19-
"smarttabs": true,
20-
"white": false,
21-
"loopfunc": true,
22-
"globals": {
23-
"it": true,
24-
"describe": true,
25-
"before": true,
26-
"after": true,
27-
"exports": true
28-
}
2+
"node": true,
3+
"esnext": true,
4+
"bitwise": true,
5+
"camelcase": true,
6+
"curly": true,
7+
"eqeqeq": true,
8+
"immed": true,
9+
"indent": 2,
10+
"latedef": "nofunc",
11+
"newcap": true,
12+
"noarg": true,
13+
"quotmark": "single",
14+
"regexp": true,
15+
"undef": true,
16+
"unused": true,
17+
"strict": false,
18+
"trailing": true,
19+
"smarttabs": true,
20+
"white": false,
21+
"loopfunc": true,
22+
"expr": true,
23+
"globals": {
24+
"it": true,
25+
"describe": true,
26+
"before": true,
27+
"beforeEach": true,
28+
"after": true,
29+
"afterEach": true,
30+
"exports": true
31+
}
2932
}

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
language: node_js
2+
services: mongodb
23
node_js:
3-
- "0.11"
44
- "0.10"
5-
- "0.8"
6-
before_install:
7-
- "npm install -g mocha"
8-
services:
9-
- mongodb
5+
- "node"
6+
- "iojs"

Gruntfile.js

Lines changed: 0 additions & 62 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Glavin Wiechert
3+
Copyright (c) 2015 FeathersJS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

0 commit comments

Comments
 (0)