From 7ad9aaa5c53b863f48b86f18f3ad13bd34a6dc7b Mon Sep 17 00:00:00 2001 From: "hank.he" Date: Fri, 17 May 2024 15:17:21 +0800 Subject: [PATCH] Docs: 1.3.1 Version. --- README.en.md | 6 +++--- README.md | 6 +++--- package.json | 8 ++++---- src/index.ts | 1 + 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.en.md b/README.en.md index ee3cf08..d2a3eb7 100644 --- a/README.en.md +++ b/README.en.md @@ -78,10 +78,10 @@ XCall.existEvent('hello'); // false ## API Docs -[API Docs](https://github.com/pandaoh/js-xcall/blob/main/docs/README.md) +[API Docs](https://github.com/biugle/js-xcall/blob/main/docs/README.md) ## Others -* [Issue](https://github.com/pandaoh/js-xcall/issues) -* [Pull Request](https://github.com/pandaoh/js-xcall/pulls) +* [Issue](https://github.com/biugle/js-xcall/issues) +* [Pull Request](https://github.com/biugle/js-xcall/pulls) * [hxbpandaoh@163.com](mailto:hxbpandaoh@163.com) diff --git a/README.md b/README.md index a1ac98a..fb2898e 100644 --- a/README.md +++ b/README.md @@ -78,10 +78,10 @@ XCall.existEvent('hello'); // false ## API 列表 -[API Docs](https://github.com/pandaoh/js-xcall/blob/main/docs/README.md) +[API Docs](https://github.com/biugle/js-xcall/blob/main/docs/README.md) ## 其他 -* [Issue](https://github.com/pandaoh/js-xcall/issues) -* [Pull Request](https://github.com/pandaoh/js-xcall/pulls) +* [Issue](https://github.com/biugle/js-xcall/issues) +* [Pull Request](https://github.com/biugle/js-xcall/pulls) * [hxbpandaoh@163.com](mailto:hxbpandaoh@163.com) diff --git a/package.json b/package.json index 7100f25..653d932 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "js-xcall", - "version": "1.3.0", + "version": "1.3.1", "description": "A Simple Events Dispatcher Singleton Class.", "main": "lib/index.js", "module": "es/index.js", @@ -33,16 +33,16 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/pandaoh/js-xcall.git" + "url": "git+https://github.com/biugle/js-xcall.git" }, "author": "hxb", "publisher": "hxbpandaoh@163.com", "blog": "http://a.biugle.cn", "license": "ISC", "bugs": { - "url": "https://github.com/pandaoh/js-xcall/issues" + "url": "https://github.com/biugle/js-xcall/issues" }, - "homepage": "https://github.com/pandaoh/js-xcall#readme", + "homepage": "https://github.com/biugle/js-xcall#readme", "keywords": [ "xcall", "js-xcall", diff --git a/src/index.ts b/src/index.ts index a5e4bcf..1d08789 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,7 @@ */ /** * XCall 单例类 + * 直接引入使用即可 */ class XCall { private static instance: XCall;