Skip to content

0.26.0

Choose a tag to compare

@searls searls released this 25 Feb 18:54
· 136 commits to master since this release
  • #221 - Adds a --process flag to the lineman config command 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 */