From d5634f676fa20311b6efb4b4213586550a38b355 Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Thu, 25 Feb 2021 13:23:01 +0900 Subject: [PATCH] Ready to publish on nest.land --- .eggignore | 3 +++ README.md | 2 ++ egg.json | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 .eggignore create mode 100644 egg.json diff --git a/.eggignore b/.eggignore new file mode 100644 index 0000000..ecde67e --- /dev/null +++ b/.eggignore @@ -0,0 +1,3 @@ +extends .gitignore +./src/test/**/* + diff --git a/README.md b/README.md index d2191f7..7e21d05 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ You can import the package from https://deno.land/x/harmony/mod.ts (with latest version) or can add a version too, and raw GitHub URL (latest unpublished version) https://raw.githubusercontent.com/harmonyland/harmony/main/mod.ts too. +You can also check(not import) the module in https://nest.land/package/harmony (link for importing is in the site). + For a quick example, run this: ```bash diff --git a/egg.json b/egg.json new file mode 100644 index 0000000..fc8d036 --- /dev/null +++ b/egg.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://x.nest.land/eggs@0.3.4/src/schema.json", + "name": "harmony", + "entry": "./mod.ts", + "description": "An easy to use Discord API Library for Deno.", + "homepage": "https://github.com/harmonyland/harmony", + "version": "v1.1.3", + "files": [ + "./src/**/*", + "./deps.ts", + "./README.md", + "./LICENSE", + "./banner.png", + "./CONTRIBUTING.md", + "./CODE_OF_CONDUCT.md", + "./examples/*" + ], + "checkFormat": "npx eslint src", + "checkTests": false, + "checkInstallation": false, + "check": true, + "unlisted": false +}