Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
441 B
JavaScript
Executable File
15 lines
441 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { dirname } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import { exec } from 'child_process';
|
|
|
|
exec('download-msgpackr-prebuilds', propagateOutput);
|
|
process.chdir(fileURLToPath(dirname(dirname(import.meta.url))));
|
|
exec('prebuildify-ci download', propagateOutput);
|
|
function propagateOutput(error, stdout, stderr) {
|
|
console.error(stderr);
|
|
console.log(stdout);
|
|
if (error?.code)
|
|
process.exit(error.code);
|
|
} |