We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a540b5 commit e073983Copy full SHA for e073983
crates/next-api/src/project.rs
@@ -586,6 +586,13 @@ impl ProjectContainer {
586
"initialize project",
587
project_name = %this.name,
588
version = options.next_version.as_str(),
589
+ node_version = options.current_node_js_version.as_str(),
590
+ os = std::env::consts::OS,
591
+ arch = std::env::consts::ARCH,
592
+ cpu_cores = std::thread::available_parallelism()
593
+ .map(|n| n.get())
594
+ .unwrap_or(0),
595
+ dev = options.dev,
596
env_diff = Empty
597
);
598
let span_clone = span.clone();
0 commit comments