Skip to content

Commit

Permalink
Merge branch 'release/release/0.15.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Nov 29, 2023
2 parents 46c30fb + 8ae02d0 commit 2bea73e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed",
"type": "module",
"version": "0.15.3",
"version": "0.15.4",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
Expand Down
4 changes: 2 additions & 2 deletions src/common/msg/channel.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C)opyright 2021-07-15 Dirk Holtwick, holtwick.it. All rights reserved.

import { useDisposeWithUtils } from '..'
import { useDispose } from '../dispose-defer'
import { uuid } from '../uuid'
import { Emitter } from './emitter'

Expand Down Expand Up @@ -30,7 +30,7 @@ export abstract class Channel extends Emitter<{
abstract isConnected?: boolean
abstract postMessage(data: any): void

dispose = useDisposeWithUtils()
dispose = useDispose()

/** @deprecated use .dispose() */
close() {
Expand Down

0 comments on commit 2bea73e

Please sign in to comment.