Compare commits

..

No commits in common. "2fccbe96ebdf2b014412be8be81fd12bf32d360f" and "9498bed710e8bb8151f42befaad4e692295f9bfc" have entirely different histories.

5 changed files with 3 additions and 11 deletions

View File

@ -1,4 +1,6 @@
build:
# compile the janet into an image
# janet -c src/ludus.janet build/ludus.jimage
# the complex emscripten invocation
# note we have the stack size set to 1024*1024 (1 MB)
emcc \

Binary file not shown.

View File

@ -6489,7 +6489,7 @@ var __emscripten_stack_alloc = (a0) => (__emscripten_stack_alloc = wasmExports['
var _emscripten_stack_get_current = () => (_emscripten_stack_get_current = wasmExports['emscripten_stack_get_current'])();
var ___cxa_is_pointer_type = createExportWrapper('__cxa_is_pointer_type', 1);
var dynCall_jiji = Module['dynCall_jiji'] = createExportWrapper('dynCall_jiji', 5);
var ___emscripten_embedded_file_data = Module['___emscripten_embedded_file_data'] = 1782340;
var ___emscripten_embedded_file_data = Module['___emscripten_embedded_file_data'] = 1787652;
function invoke_i(index) {
var sp = stackSave();
try {

Binary file not shown.

View File

@ -3,7 +3,6 @@ repl:
kitten @ launch --type=os-window --allow-remote-control --cwd=current --title=hx_repl:ludus --keep-focus
kitten @ send-text -m "title:hx_repl:ludus" "janet -s\n"
# restart the repl server
restart:
kitten @ send-text -m "title:hx_repl:ludus" "\04"
kitten @ send-text -m "title:hx_repl:ludus" "janet -s\n"
@ -18,14 +17,5 @@ doc:
# publish to npm (did you build things first?)
publish:
just build
npm version patch
npm publish
# build the ludus jimage
build:
rm build/out.mjs
rm build/out.wasm
rm build/ludus.jimage
janet -c src/ludus.janet build/ludus.jimage
cd build && just build