Skip to content

Commit

Permalink
Merge pull request #18 from feathersjs/pre-release
Browse files Browse the repository at this point in the history
Release 2.0.0.

Closes #1, #2, #6, #12, #15, #17.
  • Loading branch information
ekryski committed Aug 5, 2015
2 parents b0f891d + ac56d92 commit facae4a
Show file tree
Hide file tree
Showing 19 changed files with 1,208 additions and 528 deletions.
4 changes: 4 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
languages:
JavaScript: true
# exclude_paths:
# - "foo/bar.rb"
13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

57 changes: 30 additions & 27 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"white": false,
"loopfunc": true,
"globals": {
"it": true,
"describe": true,
"before": true,
"after": true,
"exports": true
}
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"white": false,
"loopfunc": true,
"expr": true,
"globals": {
"it": true,
"describe": true,
"before": true,
"beforeEach": true,
"after": true,
"afterEach": true,
"exports": true
}
}
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: node_js
services: mongodb
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install:
- "npm install -g mocha"
services:
- mongodb
- "node"
- "iojs"
62 changes: 0 additions & 62 deletions Gruntfile.js

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Glavin Wiechert
Copyright (c) 2015 FeathersJS

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

0 comments on commit facae4a

Please sign in to comment.