Skip to content

Commit

Permalink
Merge branch 'release/release/0.13.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Sep 25, 2023
2 parents c8bbd58 + da409b7 commit fce34bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed",
"type": "module",
"version": "0.13.12",
"version": "0.13.13",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
Expand Down Expand Up @@ -67,17 +67,17 @@
"watch": "nr build:tsup -- --watch"
},
"devDependencies": {
"@antfu/eslint-config": "^0.42.0",
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.21.8",
"@types/node": "^20",
"c8": "^8.0.1",
"cross-fetch": "^4.0.0",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint": "^8.50.0",
"madge": "^6.1.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
"vitest": "^0.34.5"
}
}
2 changes: 2 additions & 0 deletions src/common/msg/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export abstract class Channel extends Emitter<{
id: string = uuid()
abstract isConnected?: boolean
abstract postMessage(data: any): void

/** @deprecated use .dispose() */
close() {
void this.dispose()
}
Expand Down
5 changes: 3 additions & 2 deletions src/shim-window.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/* eslint-disable no-var */
/* eslint-disable vars-on-top */

export {}

declare global {
interface Window {
isNodeTestEnv?: boolean
// debugZeed?: boolean
}

module globalThis {
var isNodeTestEnv: boolean
// var debugZeed: boolean
}
}

0 comments on commit fce34bd

Please sign in to comment.