Skip to content

Commit 7540f4d

Browse files
authored
Merge pull request #15 from ora-io/dev
fix(orap): onListenFn called twice
2 parents 352cf86 + 9daac54 commit 7540f4d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ora-stack",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"private": true,
55
"packageManager": "[email protected]",
66
"description": "",

packages/orap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ora-io/orap",
33
"type": "module",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"packageManager": "[email protected]",
66
"description": "",
77
"author": "Norman (nom4dv3), MuRong",

packages/orap/src/verse/orap.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('OrapVerse', () => {
2727
orapVerse.setEventVerses([eventVerse])
2828
orapVerse.play()
2929
expect(playSpy).toHaveBeenCalled()
30-
expect(orapFlow.onListenFn).toHaveBeenCalled()
30+
// expect(orapFlow.onListenFn).toHaveBeenCalled()
3131
})
3232

3333
it('should set the event verses', () => {

packages/orap/src/verse/orap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class OrapVerse implements Verse {
1717
for (const verse of this._eventVerses)
1818
verse.play()
1919

20-
this.flow?.onListenFn()
20+
// this.flow?.onListenFn()
2121
// return this
2222
}
2323

packages/reku/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ora-io/reku",
33
"type": "module",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"packageManager": "[email protected]",
66
"description": "",
77
"author": "Norman (nom4dv3), MuRong",

packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ora-io/utils",
33
"type": "module",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"packageManager": "[email protected]",
66
"description": "",
77
"author": "Norman (nom4dv3), MuRong",

0 commit comments

Comments
 (0)