Added support for deno compilation and formatting to .deno.json file. Implemented basic line wrapping functionality in src/lwrap.ts, using Wrapper class to wrap lines at 80 characters.
8 lines
140 B
Bash
Executable file
8 lines
140 B
Bash
Executable file
#!/usr/bin/bash
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
rm -fr target
|
|
mkdir -p target
|
|
deno compile --output target/lwrap src/lwrap.ts
|