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

Commit

Permalink
Merge pull request #5 from mocks-server/release
Browse files Browse the repository at this point in the history
Release v1.0.3
  • Loading branch information
javierbrea authored Dec 5, 2021
2 parents f90297a + a0b89d4 commit ba79328
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
### Removed

## [1.0.3] - 2021-12-05

### Fixed
- fix: Add `init`, `start` and `stop` methods to avoid alerts

## [1.0.2] - 2021-12-05

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mocks-server/plugin-proxy",
"version": "1.0.2",
"version": "1.0.3",
"description": "Mocks Server plugin providing an http-proxy route handler",
"keywords": [
"mocks-server-plugin",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.organization=mocks-server
sonar.projectKey=mocks-server_plugin-proxy
sonar.projectVersion=1.0.2
sonar.projectVersion=1.0.3

sonar.javascript.file.suffixes=.js
sonar.sourceEncoding=UTF-8
Expand Down
12 changes: 12 additions & 0 deletions src/Plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ class Plugin {
get displayName() {
return packageInfo.name;
}

init() {
// do nothing
}

start() {
// do nothing
}

stop() {
// do nothing
}
}

module.exports = Plugin;

0 comments on commit ba79328

Please sign in to comment.