persona-community-5/.pnpm-store/v3/files/c5/9409ead773b394fc24e243480a60d47589cc4d1c8658b340c8b6bf0a833bc005298a4e5c4b4182bd67f94c9da6c34f9a797e8ae44c607ee70d76d9ab0f5ba3
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

8 lines
153 B
Plaintext

import { isBrowser } from './env';
export const output = {
write(str: string) {
return isBrowser ? undefined : process.stdout.write(str);
},
};