0.26.0
- #221 - Adds a
--processflag to thelineman configcommand that will interpolate grunt template values found in the config to show you the fields as grunt will use them.
From that commit:
The utility of the lineman config command is limited when the user
needs to see what the actual interpolated value will look like, esp.
for file expansions.
Example:
$ lineman config meta.banner
/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> */
vs.
$ lineman config meta.banner --process
/*! An HTML/JS/CSS app - v0.0.1 - 2014-02-25 */