Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RawOutput API #8075

Merged
merged 1 commit into from
May 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions crates/turbopack-core/src/raw_output.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use turbo_tasks::Vc;
use turbo_tasks_fs::FileSystemPath;

use crate::{
asset::{Asset, AssetContent},
Expand All @@ -11,14 +12,15 @@ use crate::{
/// This module has no references to other modules.
#[turbo_tasks::value]
pub struct RawOutput {
path: Vc<FileSystemPath>,
source: Vc<Box<dyn Source>>,
}

#[turbo_tasks::value_impl]
impl OutputAsset for RawOutput {
#[turbo_tasks::function]
fn ident(&self) -> Vc<AssetIdent> {
self.source.ident()
AssetIdent::from_path(self.path)
}
}

Expand All @@ -33,7 +35,7 @@ impl Asset for RawOutput {
#[turbo_tasks::value_impl]
impl RawOutput {
#[turbo_tasks::function]
pub fn new(source: Vc<Box<dyn Source>>) -> Vc<RawOutput> {
RawOutput { source }.cell()
pub fn new(path: Vc<FileSystemPath>, source: Vc<Box<dyn Source>>) -> Vc<RawOutput> {
RawOutput { path, source }.cell()
}
}
Loading