Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 87b34b8

Browse files
authored
Merge pull request #34 from mocks-server/release
Update dependencies
2 parents 0d643dc + 9fbae3b commit 87b34b8

File tree

7 files changed

+4050
-3261
lines changed

7 files changed

+4050
-3261
lines changed

.travis.yml

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,2 @@
1-
language: node_js
2-
3-
node_js:
4-
- "10"
5-
6-
cache:
7-
directories:
8-
- ~/.npm
9-
- node_modules
10-
- ~/.sonar/cache
11-
12-
addons:
13-
sonarcloud:
14-
organization: "mocks-server"
15-
branch:
16-
name: "$TRAVIS_CURRENT_BRANCH"
17-
18-
script:
19-
- npm run lint
20-
- npm run test
21-
- npm run coveralls
22-
- npm run build
23-
- 'if [ -n "$SONAR_TOKEN" ]; then sonar-scanner -Dsonar.login=${SONAR_TOKEN}; fi'
24-
25-
deploy:
26-
provider: npm
27-
email: "javier.brea@gmail.com"
28-
api_key: "$NPM_TOKEN"
29-
edge: true
30-
on:
31-
tags: true
32-
skip_cleanup: true
1+
version: ~> 1.0
2+
import: mocks-server/ci-cd:.travis-build-deploy.yml@master

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Removed
1212

13-
## [1.0.4] - 2019-01-12
13+
## [1.0.5] - 2020-03-22
14+
### Changed
15+
- Update dependencies
16+
17+
## [1.0.4] - 2020-01-12
1418
### Changed
1519
- Use fixed versioning in dependencies
1620

17-
## [1.0.3] - 2019-01-12
21+
## [1.0.3] - 2020-01-12
1822
### Changed
1923
- Update dependencies
2024

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build status][travisci-image]][travisci-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Quality Gate][quality-gate-image]][quality-gate-url]
22

3-
[![NPM dependencies][npm-dependencies-image]][npm-dependencies-url] [![Greenkeeper badge](https://badges.greenkeeper.io/mocks-server/admin-api-paths.svg)](https://greenkeeper.io/) [![Last commit][last-commit-image]][last-commit-url] [![Last release][release-image]][release-url]
3+
[![NPM dependencies][npm-dependencies-image]][npm-dependencies-url] [![Renovate](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com) [![Last commit][last-commit-image]][last-commit-url] [![Last release][release-image]][release-url]
44

55
[![NPM downloads][npm-downloads-image]][npm-downloads-url] [![License][license-image]][license-url]
66

jest.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ module.exports = {
2020
branches: 100,
2121
functions: 100,
2222
lines: 100,
23-
statements: 100
24-
}
23+
statements: 100,
24+
},
2525
},
2626

2727
// The glob patterns Jest uses to detect test files
2828
testMatch: ["**/test/**/?(*.)+(spec|test).js?(x)"],
2929

3030
// The test environment that will be used for testing
31-
testEnvironment: "node"
31+
testEnvironment: "node",
3232
};

0 commit comments

Comments
 (0)