Jesse Ditson

Results 44 comments of Jesse Ditson

Given the OP's code, these tests pass: ```rust #[test] fn render_with_nil() { let mut object = liquid::model::Object::new(); object.insert("product_price".into(), liquid::model::Value::Nil); render_template( "Liquid! {{ product_price | default: 2.99 }}".to_string(), object ); }...

FWIW, for now you can enable watching per asset pair using the `assets.watch` key, e.g. ``` copy({ assets: { from: [`./src/foo/*`], to: [`./foo/*`], watch: true, }, }) ```

FYI inline preview was also merged into https://github.com/Leathong/openscad-support-vscode (via https://github.com/Leathong/openscad-support-vscode/pull/36), I took a slightly different approach so it might be interesting to compare and contrast. Excited to have some options...

Import statements work well in wasm, you just have to make sure the paths are available in the FS implementation - emscripten uses a [file system api](https://emscripten.org/docs/api_reference/Filesystem-API.html) which in node...