-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
129 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,25 @@ | |
"type": "module", | ||
"main": "node/index.js", | ||
"scripts": { | ||
"clean": "rimraf build wbuild docs/cart docs/wasm", | ||
"test": "cmake -B build -DNATIVE=0 -DTESTS=1 -DCARTS=0 && cmake --build build && ./build/test/test_colors", | ||
"gen:wamr": "node tools/gen_wamr.js", | ||
"gen:funcs": "node tools/gen_funcs.js", | ||
"gen:web": "node tools/gen_web.js", | ||
"start": "npm run build:web && npm run build:carts && live-server docs", | ||
"start": "npm run build:site && live-server docs", | ||
"build:retro": "cmake -GNinja -B build -DLIBRETRO=1 -DHOST=0 -DTESTS=0 -DCARTS=0 && cmake --build build", | ||
"build:carts": "cmake -GNinja -B build -DLIBRETRO=0 -DHOST=0 -DTESTS=0 -DCARTS=1 && cmake --build build", | ||
"build:host": "cmake -GNinja -B build -DLIBRETRO=0 -DHOST=1 -DTESTS=0 -DCARTS=0 && cmake --build build", | ||
"build:web": "emcmake cmake -DLIBRETRO=0 -DHOST=1 -DTESTS=0 -DCARTS=0 -GNinja -B wbuild && cmake --build wbuild && mkdir -p docs/wasm docs/cart && cp wbuild/host/null0.* docs/wasm && cp build/cart/c/*.null0 docs/cart" | ||
"build:web": "emcmake cmake -DLIBRETRO=0 -DHOST=1 -DTESTS=0 -DCARTS=0 -GNinja -B wbuild && cmake --build wbuild", | ||
"build:site": "npm run build:carts && npm run build:web && mkdir -p docs/wasm docs/cart && cp wbuild/host/null0.* docs/wasm && cp build/cart/c/*.null0 docs/cart" | ||
}, | ||
"keywords": [], | ||
"author": "David Konsumer <[email protected]>", | ||
"license": "ZLIB", | ||
"devDependencies": { | ||
"glob": "^10.3.10", | ||
"live-server": "^1.2.0", | ||
"rimraf": "^6.0.1", | ||
"yaml": "^2.4.0" | ||
} | ||
} |