@gtkx/native 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.node +0 -0
  2. package/package.json +3 -1
package/dist/index.node CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/native",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Rust-based native module providing FFI bindings for GTKX",
5
5
  "keywords": [
6
6
  "gtk",
@@ -38,7 +38,9 @@
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc -b && cp index.node dist/ && cp ../../README.md .",
41
+ "lint": "cargo clippy -- -D warnings",
41
42
  "native-build": "cargo build --message-format=json-render-diagnostics --release > cargo.log && neon dist < cargo.log",
43
+ "native-test": "cargo test -- --test-threads=1",
42
44
  "test": "if [ -n \"$CI\" ]; then vitest run; else GDK_BACKEND=x11 xvfb-run -a vitest run; fi"
43
45
  }
44
46
  }