feathers-memory
Advanced tools
Comparing version 0.7.3 to 0.7.4
@@ -139,5 +139,8 @@ 'use strict'; | ||
var query = params.query || {}; | ||
var filters = getFilter(query); | ||
var _getFilter = getFilter(params.query || {}); | ||
var query = _getFilter.query; | ||
var filters = _getFilter.filters; | ||
var values = _.values(this.store).filter((0, _utils.matcher)(query)); | ||
@@ -144,0 +147,0 @@ |
{ | ||
"name": "feathers-memory", | ||
"description": "An in memory service store", | ||
"version": "0.7.3", | ||
"version": "0.7.4", | ||
"homepage": "https://github.com/feathersjs/feathers-memory", | ||
@@ -30,3 +30,4 @@ "main": "lib/", | ||
"prepublish": "npm run compile", | ||
"publish": "git push origin && git push origin --tags", | ||
"publish": "git push origin --tags && npm run changelog && git push origin", | ||
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"", | ||
"release:patch": "npm version patch && npm publish", | ||
@@ -39,3 +40,3 @@ "release:minor": "npm version minor && npm publish", | ||
"mocha": "mocha test/ --compilers js:babel-core/register", | ||
"test": "npm run compile && npm run jshint && npm run mocha && nsp check", | ||
"test": "npm run compile && npm run jshint && npm run mocha", | ||
"start": "node example/app.js" | ||
@@ -49,3 +50,3 @@ }, | ||
"feathers-errors": "^2.0.1", | ||
"feathers-query-filters": "^1.1.1", | ||
"feathers-query-filters": "^2.0.0", | ||
"uberproto": "^1.2.0" | ||
@@ -64,5 +65,4 @@ }, | ||
"jshint": "^2.8.0", | ||
"mocha": "^2.5.0", | ||
"nsp": "^2.2.0" | ||
"mocha": "^2.5.0" | ||
} | ||
} |
20603
11
5
281
+ Addedfeathers-commons@0.8.7(transitive)
+ Addedfeathers-query-filters@2.1.2(transitive)
- Removedfeathers-query-filters@1.5.1(transitive)