Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #31 from ovh-ux/develop
Browse files Browse the repository at this point in the history
Release v2.0.0
  • Loading branch information
antleblanc authored Oct 22, 2019
2 parents 919d5a3 + fb034db commit 7138fe4
Show file tree
Hide file tree
Showing 3 changed files with 1,727 additions and 2,450 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,23 @@
"postversion": "git push && git push --tags"
},
"dependencies": {
"lodash": "^4.17.11"
"lodash": "^4.17.15"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-angular": "^7.1.2",
"@ovh-ux/component-rollup-config": "5.0.0-beta.1",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-formatter-pretty": "^2.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-markdown": "^1.0.0",
"htmlhint": "^0.10.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@ovh-ux/component-rollup-config": "7.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.1",
"htmlhint": "^0.11.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0"
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0"
},
"peerDependencies": {
"angular": "1.6.10",
Expand Down
4 changes: 2 additions & 2 deletions src/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ export default /* @ngInject */ ($q, $timeout, $http) => class {

log() {
return this.source
.then(source => $http.get(`${source}&sort=asc&limit=500`))
.then((source) => $http.get(`${source}&sort=asc&limit=500`))
.then((response) => {
this.logs = uniq(
flatten([...this.logs, get(response, 'data.messages', [])]),
log => log.message._id, // eslint-disable-line no-underscore-dangle
(log) => log.message._id, // eslint-disable-line no-underscore-dangle
);
return this.logs;
})
Expand Down
Loading

0 comments on commit 7138fe4

Please sign in to comment.