support interaction between module and apps for updating templates before rendering
[squeep-authentication-module] / index.js
index 53b799ea719bfa6b21fee757dfa6f3d44aab176f..5d9da0c4c3b931845ea1edca8fbfdccca3cef3da 100644 (file)
--- a/index.js
+++ b/index.js
@@ -3,9 +3,11 @@
 const Authenticator = require('./lib/authenticator');
 const SessionManager = require('./lib/session-manager');
 const stdioCredential = require('./lib/stdio-credential');
+const templateHelpers = require('./lib/template/helpers');
 
 module.exports = {
   Authenticator,
   SessionManager,
   stdioCredential,
+  ...templateHelpers,
 };