@hattip/bundler-cloudflare-workers
Advanced tools
Comparing version 0.0.42 to 0.0.43
@@ -9,3 +9,3 @@ import { | ||
// package.json | ||
var version = "0.0.42"; | ||
var version = "0.0.43"; | ||
@@ -16,6 +16,6 @@ // src/cli.ts | ||
"<input> <output>", | ||
"Bundle the HatTip app in <input> into <output> as a Clourflare Workers module" | ||
"Bundle the Hattip app in <input> into <output> as a Clourflare Workers module" | ||
).option( | ||
"-e, --entry", | ||
"Interpret <input> as a Cloudflare Workers module entry instead of a HatTip handler entry" | ||
"Interpret <input> as a Cloudflare Workers module entry instead of a Hattip handler entry" | ||
).option("--no-static", "Do not serve static files").action( | ||
@@ -22,0 +22,0 @@ async (input, output, options) => { |
@@ -8,3 +8,3 @@ import { BuildOptions } from 'esbuild'; | ||
/** | ||
* Module file that default exports a HatTip handler. | ||
* Module file that default exports a Hattip handler. | ||
* You have to provide either this or `cfwEntry`, but | ||
@@ -11,0 +11,0 @@ * not both. |
{ | ||
"name": "@hattip/bundler-cloudflare-workers", | ||
"version": "0.0.42", | ||
"version": "0.0.43", | ||
"type": "module", | ||
@@ -24,7 +24,7 @@ "description": "Cloudflare Workers bundler for Hattip", | ||
"devDependencies": { | ||
"@cyco130/eslint-config": "^3.6.3", | ||
"@types/node": "^20.11.16", | ||
"@cyco130/eslint-config": "^3.6.4", | ||
"@types/node": "^20.11.19", | ||
"eslint": "^8.56.0", | ||
"publint": "^0.2.7", | ||
"tsup": "^8.0.1", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.3.3" | ||
@@ -31,0 +31,0 @@ }, |
# `@hattip/bundler-cloudflare-workers` | ||
HatTip bundler for [Cloudflare Workers](https://workers.cloudflare.com). It uses [`esbuild`](https://esbuild.github.io) behind the scenes. | ||
Hattip bundler for [Cloudflare Workers](https://workers.cloudflare.com). It uses [`esbuild`](https://esbuild.github.io) behind the scenes. | ||
@@ -10,6 +10,6 @@ ## CLI | ||
Bundle the HatTip app in <input> into <output> as a Clourflare Workers module. | ||
Bundle the Hattip app in <input> into <output> as a Clourflare Workers module. | ||
Options: | ||
-e, --entry Interpret <input> as a Cloudflare Workers module entry instead of a HatTip handler entry | ||
-e, --entry Interpret <input> as a Cloudflare Workers module entry instead of a Hattip handler entry | ||
-h, --help Display this message | ||
@@ -19,3 +19,3 @@ -v, --version Display version number | ||
The input can be either a module that default exports a HatTip handler entry or a Cloudflare Workers module similar to the following: | ||
The input can be either a module that default exports a Hattip handler entry or a Cloudflare Workers module similar to the following: | ||
@@ -22,0 +22,0 @@ ```js |