forked from florianholzapfel/express-restify-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare 5.0 release (florianholzapfel#358)
* refactor(core): remove parsing of ~, >, >=, <, <=, != and == operators (florianholzapfel#357) * refactor(core): store query in req.erm.query (florianholzapfel#356) * fix(core): remove next from postProcess (florianholzapfel#361) * fix(core): skip & limit must be valid integers (florianholzapfel#366) * refactor(core): allow client provided _id (florianholzapfel#367) * chore(misc): add .vscode to gitignore * chore(test): add node 9 * chore(deps): update async, ensure-array & express * chore(deps): remove async * chore(docs): update changelog (5.0.0) * chore(deps): update weedout * chore(deps): update moredots * chore(deps): update mongoose-detective * chore(deps): drop support for Node 4, add 10 * chore(deps): update * chore(deps): add package-lock * chore(docs): drop node 4, add 10 * chore(deps): replace standard with eslint+prettier * chore(deps): add eslint
- Loading branch information
Showing
25 changed files
with
4,003 additions
and
822 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": ["plugin:prettier/recommended"], | ||
"parserOptions": { | ||
"ecmaVersion": 6 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ tmp | |
node_modules | ||
npm-debug.log | ||
/.idea | ||
/.vscode | ||
nbproject | ||
coverage | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"printWidth": 1000000, | ||
"semi": false, | ||
"singleQuote": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "6" | ||
- "8" | ||
- "10" | ||
services: | ||
- "mongodb" | ||
sudo: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.