fix(core): wasm build should build (#30655)
## Current Behavior There are warnings as well as an error and wasm does not build ## Expected Behavior wasm. builds
This commit is contained in:
parent
5feafd64d4
commit
3ad8082a39
@ -1,6 +1,5 @@
|
|||||||
use std::{
|
use std::{
|
||||||
env,
|
env,
|
||||||
error::Error,
|
|
||||||
fs::{self},
|
fs::{self},
|
||||||
io::Read,
|
io::Read,
|
||||||
path::Path,
|
path::Path,
|
||||||
|
|||||||
3
packages/nx/src/native/cache/mod.rs
vendored
3
packages/nx/src/native/cache/mod.rs
vendored
@ -1,4 +1,3 @@
|
|||||||
pub mod errors;
|
|
||||||
pub mod expand_outputs;
|
pub mod expand_outputs;
|
||||||
pub mod file_ops;
|
pub mod file_ops;
|
||||||
pub mod validate_outputs;
|
pub mod validate_outputs;
|
||||||
@ -6,4 +5,6 @@ pub mod validate_outputs;
|
|||||||
#[cfg(not(target_arch = "wasm32"))]
|
#[cfg(not(target_arch = "wasm32"))]
|
||||||
pub mod cache;
|
pub mod cache;
|
||||||
#[cfg(not(target_arch = "wasm32"))]
|
#[cfg(not(target_arch = "wasm32"))]
|
||||||
|
pub mod errors;
|
||||||
|
#[cfg(not(target_arch = "wasm32"))]
|
||||||
pub mod http_remote_cache;
|
pub mod http_remote_cache;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user