- 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>
24 lines
586 B
JavaScript
24 lines
586 B
JavaScript
'use strict';
|
|
|
|
var parse = require('../');
|
|
var test = require('tape');
|
|
|
|
test('dotted alias', function (t) {
|
|
var argv = parse(['--a.b', '22'], { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } });
|
|
t.equal(argv.a.b, 22);
|
|
t.equal(argv.aa.bb, 22);
|
|
t.end();
|
|
});
|
|
|
|
test('dotted default', function (t) {
|
|
var argv = parse('', { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } });
|
|
t.equal(argv.a.b, 11);
|
|
t.equal(argv.aa.bb, 11);
|
|
t.end();
|
|
});
|
|
|
|
test('dotted default with no alias', function (t) {
|
|
var argv = parse('', { default: { 'a.b': 11 } });
|
|
t.equal(argv.a.b, 11);
|
|
t.end();
|
|
});
|