feat(ansible-example): add @ansible/example package, tests, CI, publish & deploy workflows, docs and changelog

This commit is contained in:
2026-03-28 20:00:31 +01:00
parent b5c14d0c65
commit 445f0bfb24
28 changed files with 929 additions and 156 deletions
+8
View File
@@ -0,0 +1,8 @@
// Minimal entrypoint for @ansible/example
module.exports = function example(name) {
if (!name) return 'hello';
return `hello ${name}`;
};
// When required directly, export a default behaviour too
module.exports.default = module.exports;