3 Commits

Author SHA1 Message Date
release-bot
6bb301153a Merge remote-tracking branch 'origin/main' into feat/shape-node
All checks were successful
🚀 Lint & Test & Deploy / release (pull_request) Successful in 3m47s
2026-02-09 22:27:43 +01:00
release-bot
02eee5f9bf fix: disable macro logs in wasm
All checks were successful
🚀 Lint & Test & Deploy / release (pull_request) Successful in 3m47s
2026-02-09 22:21:28 +01:00
release-bot
9271d3a7e4 fix(app): handle error while parsing commit
All checks were successful
🚀 Lint & Test & Deploy / release (push) Successful in 3m53s
2026-02-08 21:01:34 +01:00
2 changed files with 9 additions and 9 deletions

View File

@@ -37,7 +37,7 @@
const match = line.match(regex); const match = line.match(regex);
if (!match) { if (!match) {
return undefined; return;
} }
const [, sha, link, description] = match; const [, sha, link, description] = match;

View File

@@ -11,7 +11,7 @@ extern "C" {
pub fn host_log(ptr: *const u8, len: usize); pub fn host_log(ptr: *const u8, len: usize);
} }
// #[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[macro_export] #[macro_export]
macro_rules! log { macro_rules! log {
($($t:tt)*) => {{ ($($t:tt)*) => {{
@@ -25,13 +25,13 @@ macro_rules! log {
}} }}
} }
// #[cfg(not(debug_assertions))] #[cfg(not(debug_assertions))]
// #[macro_export] #[macro_export]
// macro_rules! log { macro_rules! log {
// ($($arg:tt)*) => {{ ($($arg:tt)*) => {{
// // This will expand to nothing in release builds // This will expand to nothing in release builds
// }}; }};
// } }
#[allow(dead_code)] #[allow(dead_code)]
#[rustfmt::skip] #[rustfmt::skip]