[READ-ONLY] Mirror of https://github.com/danielroe/ripple-framework. Ripple is the presentation layer for building websites on the DPC Single Digital Presence platform.
0

Configure Feed

Select the types of activity you want to include in your feed.

ripple-framework / .hygen.js
268 B 11 lines
1const { paramCase, pascalCase } = require('change-case') 2module.exports = { 3 helpers: { 4 rplcomponentname: function (string) { 5 return `Rpl${pascalCase(string)}` 6 }, 7 rplclassname: function (string) { 8 return `rpl-${paramCase(string)}` 9 } 10 } 11}