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

Commit ba79328

Browse files
authored
Merge pull request #5 from mocks-server/release
Release v1.0.3
2 parents f90297a + a0b89d4 commit ba79328

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

CHANGELOG.md

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

15+
## [1.0.3] - 2021-12-05
16+
17+
### Fixed
18+
- fix: Add `init`, `start` and `stop` methods to avoid alerts
19+
1520
## [1.0.2] - 2021-12-05
1621

1722
### Fixed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mocks-server/plugin-proxy",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Mocks Server plugin providing an http-proxy route handler",
55
"keywords": [
66
"mocks-server-plugin",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.organization=mocks-server
22
sonar.projectKey=mocks-server_plugin-proxy
3-
sonar.projectVersion=1.0.2
3+
sonar.projectVersion=1.0.3
44

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

src/Plugin.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ class Plugin {
99
get displayName() {
1010
return packageInfo.name;
1111
}
12+
13+
init() {
14+
// do nothing
15+
}
16+
17+
start() {
18+
// do nothing
19+
}
20+
21+
stop() {
22+
// do nothing
23+
}
1224
}
1325

1426
module.exports = Plugin;

0 commit comments

Comments
 (0)