Skip to content

Commit 63bdb0c

Browse files
committed
chore: release v0.7.7
* (@GermanBluefox) nodemon reverted to 3.1.0
1 parent 9c21cc2 commit 63bdb0c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Placeholder for the next version (at the beginning of the line):
44
## **WORK IN PROGRESS**
55
-->
6-
## **WORK IN PROGRESS**
6+
## 0.7.7 (2025-01-27)
77
* (@GermanBluefox) nodemon reverted to 3.1.0
88

99
## 0.7.6 (2025-01-25)

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ class DevServer {
10641064
if (!this.isJSController()) {
10651065
this.socketEvents.on('objectChange', (args) => {
10661066
if (Array.isArray(args) && args.length > 1 && args[0] === `system.adapter.${this.adapterName}.0`) {
1067-
this.log.notice(`Adapter configuration changed, restarting nodemon...`);
1067+
this.log.notice('Adapter configuration changed, restarting nodemon...');
10681068
nodemon_1.default.restart();
10691069
}
10701070
});
@@ -1076,8 +1076,8 @@ class DevServer {
10761076
if (!match) {
10771077
return;
10781078
}
1079-
const debigPid = await this.waitForNodeChildProcess(parseInt(match[1]));
1080-
this.log.box(`Debugger is now available on process id ${debigPid}`);
1079+
const debugPid = await this.waitForNodeChildProcess(parseInt(match[1]));
1080+
this.log.box(`Debugger is now available on process id ${debugPid}`);
10811081
}
10821082
async setupDevServer(adminPort, dependencies, backupFile, useSymlinks) {
10831083
await this.buildLocalAdapter();

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": "@iobroker/dev-server",
3-
"version": "0.7.6",
3+
"version": "0.7.7",
44
"description": "Single package development server for ioBroker",
55
"main": "dist/index.js",
66
"bin": {

0 commit comments

Comments
 (0)