From 1b99c2bab35766a8e83f5e2b1ea6abff8009189a Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Wed, 26 Jan 2022 03:11:09 +0530 Subject: [PATCH] ver: 2.0.0-alpha.7 Signed-off-by: Muthu Kumar --- README.md | 4 ++++ version.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dbea997..0b44701 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,12 @@ Hyperactive is a suite of tools to build smart webapps. As of 1.0, only server-s ## Usage example ```TypeScript +// if using Deno import { elements, renderHTML } from "https://deno.land/x/hyperactive/mod.ts"; +// if using Node +import { elements, renderHTML } from "@hyperactive/hyper"; + const { div, p, h1 } = elements; assertEquals( diff --git a/version.ts b/version.ts index 0f05738..99f5213 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export const version = "2.0.0-alpha.6"; +export const version = "2.0.0-alpha.7";