rspack_fs_node 0.1.0

rspack fs node
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
  napi_build::setup();

  // Rebuild binding options if and only if it's built for crate `node_binding`
  if std::env::var("OUT_DIR")
    .expect("should exist")
    .contains("node_binding")
  {
    println!("cargo:rerun-if-changed=../node_binding");
  }
}