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>
20 lines
398 B
JavaScript
Executable File
20 lines
398 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
process.env.NODE_ENV = 'test'
|
|
|
|
var path = require('path')
|
|
var test = null
|
|
|
|
try {
|
|
var pkg = require(path.join(process.cwd(), 'package.json'))
|
|
if (pkg.name && process.env[pkg.name.toUpperCase().replace(/-/g, '_')]) {
|
|
process.exit(0)
|
|
}
|
|
test = pkg.prebuild.test
|
|
} catch (err) {
|
|
// do nothing
|
|
}
|
|
|
|
if (test) require(path.join(process.cwd(), test))
|
|
else require('./')()
|