diff --git a/README.md b/README.md index 61fe7c6..602e4ed 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,7 @@ NameTag is a simple username generator with a dictionary of safe words to use to ## How to use ```ts -<<<<<<< Updated upstream -import { nametag } from "https://deno.land/x/nametag@0.0.2/mod.ts"; -======= -import { nametag } from "https://deno.land/x/nametag@0.0.3/mod.ts"; ->>>>>>> Stashed changes +import { nametag } from "https://deno.land/x/nametag@$MODULE_VERSION/mod.ts"; const friendlyName = nametag(); ``` @@ -20,11 +16,7 @@ Or with a configuration: import { nametag, type NametagConfig, -<<<<<<< Updated upstream -} from "https://deno.land/x/nametag@0.0.2/mod.ts"; -======= -} from "https://deno.land/x/nametag@0.0.3/mod.ts"; ->>>>>>> Stashed changes +} from "https://deno.land/x/nametag@$MODULE_VERSION/mod.ts"; const config: NametagConfig = { words: 5, diff --git a/deno.json b/deno.json index 268451a..e96cddf 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,8 @@ { - "version": "0.0.3", + "version": "0.0.4", "name": "@baosoy/nametag", + "$schema": "http://json-schema.org/draft-07/schema", + "description": "A simple friendly username generator", "tasks": { "dev": "deno run --watch main.ts", "test": "deno test mod_tests.ts"