diff --git a/projects/scullyio/ng-lib/package.json b/projects/scullyio/ng-lib/package.json index 515309743..5405bc5fa 100644 --- a/projects/scullyio/ng-lib/package.json +++ b/projects/scullyio/ng-lib/package.json @@ -1,6 +1,6 @@ { "name": "@scullyio/ng-lib", - "version": "0.0.17", + "version": "0.0.18", "repository": { "type": "GIT", "url": "https://github.com/scullyio/scully/tree/master/projects/scullyio/ng-lib" diff --git a/scully.sampleBlog.config.js b/scully.sampleBlog.config.js index e7bda0e17..67339fbef 100644 --- a/scully.sampleBlog.config.js +++ b/scully.sampleBlog.config.js @@ -31,6 +31,7 @@ exports.config = { */ userId: { url: 'https://jsonplaceholder.typicode.com/users', + resultsHandler: raw => raw.filter(row => row.id < 3), property: 'id', }, }, @@ -42,6 +43,7 @@ exports.config = { */ userId: { url: 'https://jsonplaceholder.typicode.com/users', + resultsHandler: raw => raw.filter(row => row.id < 3), property: 'id', }, postId: { @@ -54,6 +56,7 @@ exports.config = { // type:'json', userId: { url: 'https://jsonplaceholder.typicode.com/users', + resultsHandler: raw => raw.filter(row => row.id < 3), property: 'id', }, friendCode: { diff --git a/scully/package-lock.json b/scully/package-lock.json index 7bc326bac..2e118488c 100644 --- a/scully/package-lock.json +++ b/scully/package-lock.json @@ -1,6 +1,6 @@ { "name": "@scullyio/scully", - "version": "0.0.63", + "version": "0.0.65", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/scully/package.json b/scully/package.json index 6e773c803..989c66646 100644 --- a/scully/package.json +++ b/scully/package.json @@ -1,6 +1,6 @@ { "name": "@scullyio/scully", - "version": "0.0.64", + "version": "0.0.65", "description": "Scully CLI", "repository": { "type": "GIT",