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:
Craigory Coppola 2025-04-09 18:18:39 -04:00 committed by GitHub
parent 5feafd64d4
commit 3ad8082a39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,5 @@
use std::{
env,
error::Error,
fs::{self},
io::Read,
path::Path,

View File

@ -1,4 +1,3 @@
pub mod errors;
pub mod expand_outputs;
pub mod file_ops;
pub mod validate_outputs;
@ -6,4 +5,6 @@ pub mod validate_outputs;
#[cfg(not(target_arch = "wasm32"))]
pub mod cache;
#[cfg(not(target_arch = "wasm32"))]
pub mod errors;
#[cfg(not(target_arch = "wasm32"))]
pub mod http_remote_cache;