Skip to main content
Module

x/htm/version.ts

Create a html response with JSX.
Go to Latest
File
/** `version` managed by https://deno.land/x/land/publish. */export const VERSION = "0.0.1"
/** `prepublish` will be invoked before publish, return `false` to prevent the publish. */export async function prepublish(version: string) { console.log("Upgrading to", version)}
/** `postpublish` will be invoked after published. */export async function postpublish(version: string) { console.log("Upgraded to", version)}