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

Commit 6753297

Browse files
authored
Merge pull request #35 from mocks-server/release
Update dependencies
2 parents cf9b289 + cc01169 commit 6753297

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2847
-2869
lines changed

.travis.yml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +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:ci
21-
- npm run coveralls
22-
- 'if [ -n "$SONAR_TOKEN" ]; then sonar-scanner -Dsonar.login=${SONAR_TOKEN}; fi'
23-
24-
deploy:
25-
provider: npm
26-
email: "javier.brea@gmail.com"
27-
api_key: "$NPM_TOKEN"
28-
on:
29-
tags: true
30-
skip_cleanup: true
1+
version: ~> 1.0
2+
import: mocks-server/ci-cd:.travis-deploy.yml@master

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
### Fixed
1515
### Removed
1616

17+
## [1.4.2] - 2020-03-22
18+
### Changed
19+
- Update dependencies
20+
1721
## [1.4.1] - 2020-01-12
1822
### Changed
1923
- Update dependencies

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/plugin-admin-api.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.acceptance.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ module.exports = {
1111
collectCoverage: false,
1212

1313
// The test environment that will be used for testing
14-
testEnvironment: "node"
14+
testEnvironment: "node",
1515
};

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/unit/**/?(*.)+(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)