Skip to content

Commit 1a50aeb

Browse files
authored
Merge pull request #14 from javierbrea/greenkeeper/initial
Update dependencies to enable Greenkeeper 🌴
2 parents 985cc46 + eb08997 commit 1a50aeb

File tree

9 files changed

+214
-83
lines changed

9 files changed

+214
-83
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ script:
2727
- npm run test
2828
- npm run test-e2e:ci
2929
- npm run coveralls
30-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sonar-scanner; fi'
30+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sonar-scanner; fi'
3131

3232
deploy:
3333
provider: npm

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111
### Removed
1212
### BREAKING CHANGES
1313

14+
## [1.1.2] - 2020-01-11
15+
### Changed
16+
- Upgrade dependencies
17+
- Disable temporarily Sonar as it is under maintenance
18+
1419
## [1.1.1] - 2019-12-28
1520
### Changed
1621
- Upgrade dependencies.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build status][travisci-image]][travisci-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Quality Gate][quality-gate-image]][quality-gate-url]
1+
[![Build status][travisci-image]][travisci-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Quality Gate][quality-gate-image]][quality-gate-url] [![Greenkeeper badge](https://badges.greenkeeper.io/javierbrea/cypress-localstorage-commands.svg)](https://greenkeeper.io/)
22

33
[![NPM dependencies][npm-dependencies-image]][npm-dependencies-url] [![Last commit][last-commit-image]][last-commit-url] [![Last release][release-image]][release-url]
44

greenkeeper.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"groups": {
3+
"default": {
4+
"packages": [
5+
"package.json",
6+
"test-e2e/react-app/package.json"
7+
]
8+
}
9+
}
10+
}

package-lock.json

Lines changed: 123 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-localstorage-commands",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Extends Cypress' cy commands with localStorage methods. Allows preserving localStorage between tests",
55
"keywords": [
66
"cypress",
@@ -36,7 +36,7 @@
3636
"eslint-config-prettier": "^6.9.0",
3737
"eslint-plugin-prettier": "^3.1.2",
3838
"eslint-plugin-react": "^7.17.0",
39-
"husky": "^3.1.0",
39+
"husky": "^4.0.6",
4040
"jest": "^24.9.0",
4141
"lint-staged": "^9.5.0",
4242
"prettier": "^1.19.1",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.organization=javierbrea
22
sonar.projectKey=cypress-localstorage-commands
3-
sonar.projectVersion=1.1.1
3+
sonar.projectVersion=1.1.2
44

55
sonar.javascript.file.suffixes=.js
66
sonar.sourceEncoding=UTF-8

0 commit comments

Comments
 (0)