Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
498 B
Text
13 lines
498 B
Text
/* IMPORT */
|
|
import { IS_LINUX, IS_WINDOWS } from './constants.js';
|
|
/* MAIN */
|
|
//URL: https://github.com/tapjs/signal-exit/blob/458776d9cf8be89712aa1f7b45bb2163ce15ef4a/src/signals.ts
|
|
const Signals = ['SIGHUP', 'SIGINT', 'SIGTERM'];
|
|
if (!IS_WINDOWS) {
|
|
Signals.push('SIGALRM', 'SIGABRT', 'SIGVTALRM', 'SIGXCPU', 'SIGXFSZ', 'SIGUSR2', 'SIGTRAP', 'SIGSYS', 'SIGQUIT', 'SIGIOT');
|
|
}
|
|
if (IS_LINUX) {
|
|
Signals.push('SIGIO', 'SIGPOLL', 'SIGPWR', 'SIGSTKFLT');
|
|
}
|
|
/* EXPORT */
|
|
export default Signals;
|