From 7fe9386507925f0d9c78b48f47d2290104b849fe Mon Sep 17 00:00:00 2001 From: 101arrowz Date: Wed, 12 Jan 2022 17:19:35 -0800 Subject: [PATCH] Update README --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3f2cb50..12e5796 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # scanner -Document scanner for the web built in Rust. Zero runtime dependencies - all the hard math is done by hand. Original TypeScript code from the master branch includes all the logic is in `src/index.ts`, but it's admittedly a bit hard to read. Rust source in `src-rs`; most of it is just copied verbatim from TypeScript, but I made a few optimizations where possible. The WASM port is a bit faster on desktop and substantially faster on mobile. Demo will soon be available [here](https://101arrowz.github.io/scanner/). +Document scanner for the web built in Rust. Zero runtime dependencies - all the hard math is done by hand. Rust source in `src-rs`; most of it is just copied verbatim from the TypeScript code [on the master branch](https://github.com/101arrowz/scanner/tree/master), but I made a few optimizations where possible. The WASM port is a bit faster on desktop and substantially faster on mobile. This branch also includes a much nicer UI Demo available [here](https://101arrowz.github.io/scanner/next/). Check out [my ongoing blog series](https://dev.to/101arrowz/series/15877) on this project to learn more about all the techniques I employed to make this project possible! \ No newline at end of file diff --git a/package.json b/package.json index e6634f2..7c1308f 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "license": "MIT", "scripts": { "start": "parcel src/index.html", - "build": "parcel build src/index.html" + "build": "parcel build src/index.html --public-url ." }, "devDependencies": { "@parcel/compressor-brotli": "^2.0.1",