From 005c69da57dc1224ca9dcbb9e21a617ab8df876b Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Thu, 13 Feb 2025 09:28:47 -0500 Subject: [PATCH] refactor: update Deno RPC interface and package files configuration --- deno-src/index.ts | 7 ++++--- package.json | 15 ++++++++------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/deno-src/index.ts b/deno-src/index.ts index db05c5c..ffd54db 100644 --- a/deno-src/index.ts +++ b/deno-src/index.ts @@ -1,8 +1,9 @@ import { expose } from "@kunkun/api/runtime/deno"; import { wakeOnLan } from "@hk/wol/deno"; +import type { API } from "../src/types.ts"; expose({ - wakeOnLan: (mac: string, ip: string, port: number) => { - wakeOnLan(mac, ip, port); + wakeOnLan: (mac: string, ip: string, port?: number) => { + return wakeOnLan(mac, ip, port); }, -}); +} satisfies API); diff --git a/package.json b/package.json index 5120a56..67cf694 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,13 @@ "type": "git", "url": "https://github.com/kunkunsh/kunkun-ext-wol" }, + "files": [ + "dist", + "deno-src", + "src/types.ts", + "README.md", + ".gitignore" + ], "kunkun": { "name": "Wake On Lan", "shortDescription": "Wake On Lan", @@ -60,11 +67,5 @@ }, "peerDependencies": { "typescript": "^5.0.0" - }, - "files": [ - "dist", - "deno-src", - "README.md", - ".gitignore" - ] + } }