From 93340d183ed20d9928409ebf9505653f7597154b Mon Sep 17 00:00:00 2001 From: The Wizard Bear <42446683+TheWizardBear@users.noreply.github.com> Date: Sat, 25 Jul 2020 19:30:01 +0100 Subject: [PATCH] updated version number to 0.1.1 --- README.md | 10 +++++----- createWidget.js | 4 ++-- egg.json | 2 +- examples/p5jsExample.js | 2 +- examples/starter.js | 2 +- package.json | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8b75694..42bafb1 100644 --- a/README.md +++ b/README.md @@ -21,14 +21,14 @@ This module is heavily influenced by [Jamis Buck's Coffeescript mazes](https://g If you are inside a Javascript module file or a `type="module"` script tag, then add the following to the top of your code: ```javascript -import {Maze} from "https://x.nest.land/maze_generator@0.1.0/mod.js"; +import {Maze} from "https://x.nest.land/maze_generator@0.1.1/mod.js"; ``` If not, you can use the dynamic `import()` function. For example: ```javascript let Maze; -import("https://x.nest.land/maze_generator@0.1.0/mod.js") +import("https://x.nest.land/maze_generator@0.1.1/mod.js") .then(module => { Maze = module.Maze; }) @@ -37,7 +37,7 @@ import("https://x.nest.land/maze_generator@0.1.0/mod.js") }) ``` -You can also import the module from `deno.land/x` if you prefer: `https://deno.land/x/maze_generator@v0.1.0/mod.js`. +You can also import the module from `deno.land/x` if you prefer: `https://deno.land/x/maze_generator@v0.1.1/mod.js`. (Note the `v` here, which is not present when importing from `nest.land`.) ### In Node @@ -65,7 +65,7 @@ Please note that Node version 14+ is required as `maze_generator` makes use of s ## Example Usage ```javascript -import {Maze} from "https://x.nest.land/maze_generator@0.1.0/mod.js" +import {Maze} from "https://x.nest.land/maze_generator@0.1.1/mod.js" let mazeSettings = { width: 12, @@ -217,7 +217,7 @@ It takes in three properties, all optional. ```html