File size: 1,233 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
use anyhow::Result;
use turbo_rcstr::RcStr;
use turbo_tasks::Vc;
use turbo_tasks_fs::FileSystemPath;
use turbopack_core::resolve::{ExternalTraced, ExternalType, options::ImportMapping};
use crate::next_import_map::get_next_package;
#[turbo_tasks::function]
pub async fn get_postcss_package_mapping(
project_path: FileSystemPath,
) -> Result<Vc<ImportMapping>> {
Ok(ImportMapping::Alternatives(vec![
// Prefer the local installed version over the next.js version
ImportMapping::PrimaryAlternative("postcss".into(), Some(project_path.clone()))
.resolved_cell(),
ImportMapping::PrimaryAlternative(
"postcss".into(),
Some(get_next_package(project_path.clone()).owned().await?),
)
.resolved_cell(),
])
.cell())
}
#[turbo_tasks::function]
pub async fn get_external_next_compiled_package_mapping(
package_name: Vc<RcStr>,
) -> Result<Vc<ImportMapping>> {
Ok(ImportMapping::Alternatives(vec![
ImportMapping::External(
Some(format!("next/dist/compiled/{}", &*package_name.await?).into()),
ExternalType::CommonJs,
ExternalTraced::Traced,
)
.resolved_cell(),
])
.cell())
}
|