- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
35 lines
963 B
JavaScript
35 lines
963 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.relay = exports.on = exports.send = void 0;
|
|
/**
|
|
* Checks if the given message is an internal node-dev message.
|
|
*/
|
|
function isNodeDevMessage(m) {
|
|
return m.cmd === 'NODE_DEV';
|
|
}
|
|
/**
|
|
* Sends a message to the given process.
|
|
*/
|
|
exports.send = function (m, dest) {
|
|
if (dest === void 0) { dest = process; }
|
|
m.cmd = 'NODE_DEV';
|
|
if (dest.send)
|
|
dest.send(m);
|
|
};
|
|
exports.on = function (proc, type, cb) {
|
|
function handleMessage(m) {
|
|
if (isNodeDevMessage(m) && type in m)
|
|
cb(m);
|
|
}
|
|
proc.on('internalMessage', handleMessage);
|
|
proc.on('message', handleMessage);
|
|
};
|
|
exports.relay = function (src, dest) {
|
|
if (dest === void 0) { dest = process; }
|
|
function relayMessage(m) {
|
|
if (isNodeDevMessage(m))
|
|
dest.send(m);
|
|
}
|
|
src.on('internalMessage', relayMessage);
|
|
src.on('message', relayMessage);
|
|
};
|