File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 18
18
npm run build
19
19
npm prune --production
20
20
21
- shasum --algorithm 256 manifest.json package.json lib/* .js lib/driver/* .js lib/zigbee2mqtt/* .js lib/ * .json LICENSE README.md > SHA256SUMS
21
+ shasum --algorithm 256 manifest.json package.json lib/* .js lib/driver/* .js lib/zigbee2mqtt/* .js LICENSE README.md > SHA256SUMS
22
22
23
23
find node_modules \( -type f -o -type l \) -exec shasum --algorithm 256 {} \; >> SHA256SUMS
24
24
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ function debug(): boolean {
17
17
return DEBUG_FLAG . DEBUG_zigbee2mqtt ;
18
18
}
19
19
20
- import manifest from '../manifest.json' ;
21
-
22
20
interface Response {
23
21
data ?: {
24
22
id ?: string ;
@@ -59,7 +57,7 @@ export class Zigbee2MqttAdapter extends Adapter {
59
57
super (
60
58
addonManager ,
61
59
`zb-zigbee2mqtt-${ adapterConfig . host } :${ adapterConfig . port ?? DEFAULT_PORT } ` ,
62
- manifest . id
60
+ 'zigbee-adapter'
63
61
) ;
64
62
this . prefix = adapterConfig . topicPrefix ?? 'zigbee2mqtt' ;
65
63
this . connect ( ) ;
You can’t perform that action at this time.
0 commit comments