diff --git a/README.md b/README.md index 3dabe8d..95c9946 100644 --- a/README.md +++ b/README.md @@ -1,48 +1,27 @@ # ESBuild Typescript Bunder -## Supports import maps and runs on Deno Deploy +## Supports import maps and runs on Deno Deploy and the browser Uses the WASM version of ESBuild for use on Deno Deploy and adds some plugins to allow for import maps. ***Unfortunately, `npm:*` and `jsr:*` specifiers are not supported currently***. ### Manual Bundle API -```typescript -import Bundle from "./mod.ts"; -Bundle( - // directory to work from - "./some_folder", +```javascript +import Bundle from "./mod.js"; - // ESBuild configuration (entry points are relative to "directory"): - {entry:["./app.tsx"]}, - - // import map (if omitted, will scan for a deno configuration within "directory" and use that) - {"imports": { +const {outputFiles} = await Bundle({ + fileSystem:import.meta.resolve('./test_project/'), + esBuild:{entryPoints:["entry"]}, + importMap:{"imports": { + "entry": "./app.tsx", "react": "https://esm.sh/preact@10.22.0/compat", "react/": "https://esm.sh/preact@10.22.0/compat/" }} -); -if(outputFiles){ - for(const item of outputFiles){ - // do something with the output... - console.log(item.text); - } +}); + + +for(const item of outputFiles){ + // do something with the output... + console.log(item.text.substring(0, 200)); } ``` -### Static bundle server - -#### API -```typescript -import Serve from "./serve.tsx"; -Serve({path:"./some_folder", html:"index.html", port:8080}); -``` - -#### CLI -``` -deno run -A /serve.tsx --path=./some_folder --html=index.html --port=8080 -``` - -Accepts three optional settings: -- `path` A directory to serve content from. Defaults to the current working directory. -- `html` A path to an html file or actual html string to *always use* when the server would serve up a non-file route. If `html` is a path, it is assumed to be relative to `path`. If not specified, routes that don't match files will 404. -- `port` Port number (default is 8000). - -When requests to typescript files are made to the server, it will treat that file as an entrypoint and return the corresponding plain javascript bundle. +(dev server is being reworked) \ No newline at end of file diff --git a/clean/bundle.js b/browser_example/bundle.js similarity index 100% rename from clean/bundle.js rename to browser_example/bundle.js diff --git a/clean/index.html b/browser_example/index.html similarity index 93% rename from clean/index.html rename to browser_example/index.html index ff8a38f..8c2ab52 100644 --- a/clean/index.html +++ b/browser_example/index.html @@ -14,7 +14,7 @@