Skip to content

Commit

Permalink
fix: bin/log2sk not working
Browse files Browse the repository at this point in the history
Add propertyValues in the fake app object.
Fixes #1585.
  • Loading branch information
tkurki committed Aug 20, 2023
1 parent 23002f2 commit a77b708
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/log2sk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ const app = {
},
emit: () => {},
on: () => {},
handleMessage: (id, delta) => console.log(JSON.stringify(delta))
handleMessage: (id, delta) => console.log(JSON.stringify(delta)),
propertyValues: {
onPropertyValues: () => undefined
}
}

new require('../lib/pipedproviders')(app).createPipedProvider({
Expand Down

0 comments on commit a77b708

Please sign in to comment.