forked from yagobski/loopback-connector-elastic-search
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release(2.0.0): add ElasticSearch 7 Support (#126)
* task(Readme): readme file update * fix(eslint): all lint issues, remove unused files * fix(eslint): constructor, prototype issues for ESConnector class * fix(lint): lint issues fixed in all.js and buildOrder.js * feature(Client): all client APIs updated * fix(replaceOrCreate): response fix * task(README, examples): update README and example server * Release: Version 2.0.0
- Loading branch information
1 parent
0cd2ddd
commit 477d311
Showing
63 changed files
with
2,779 additions
and
11,179 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,2 @@ | ||
examples/ | ||
test/ |
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,11 @@ | ||
{ | ||
"extends": "airbnb", | ||
"rules": { | ||
"comma-dangle": "off", | ||
"global-require":"off", | ||
"no-param-reassign": "off" | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 8 | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,4 +1,5 @@ | ||
.idea | ||
node_modules | ||
examples/db.json | ||
test/**/*.log | ||
test/**/*.log | ||
package-lock.json |
Oops, something went wrong.