ïnstall requirements for codegen

master
Niko PLP 9 months ago
parent 54722e1f76
commit d4c1abbd56
  1. 1
      README.md
  2. 4
      ng-app/package.json

@ -30,6 +30,7 @@ Read our [getting started guide](https://docs.nextgraph.org/en/getting-started/)
- [Install Rust](https://www.rust-lang.org/tools/install) minimum required MSRV 1.64.0
- [Install Nodejs](https://nodejs.org/en/download/)
- [Install LLVM](https://rust-lang.github.io/rust-bindgen/requirements.html)
until this [PR](https://github.com/rustwasm/wasm-pack/pull/1271) is accepted, will have to install wasm-pack this way:

@ -6,10 +6,10 @@
"scripts": {
"dev": "vite",
"webdev": "cross-env NG_APP_WEB=1 TAURI_DEBUG=1 vite",
"webbuild": "cross-env NG_APP_WEB=1 vite build && rm ./dist/assets/*.svg",
"webbuild": "cross-env NG_APP_WEB=1 vite build && rm -f ./dist-web/assets/*.svg",
"filebuild": "cross-env NG_APP_WEB=1 NG_APP_FILE=1 vite build && node prepare-app-file.cjs",
"filebuilddebug": "cross-env NG_APP_WEB=1 NG_APP_FILE=1 TAURI_DEBUG=1 vite build -m debug",
"build": "vite build && rm ./dist/assets/*.svg",
"build": "vite build && rm -f ./dist/assets/*.svg",
"buildfile": "cross-env NG_APP_FILE=1 vite build && rm -r ./dist/assets",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",

Loading…
Cancel
Save