App-Templer

 view release on metacpan or  search on metacpan

bin/templer  view on Meta::CPAN

152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
#
#  Execute any pre-build commands the user might have defined.
#
runCommands('pre-build');
 
 
#
#  Record the start time.
#
my $timer = Templer::Timer->new();
 
 
#
#  Build/rebuild the site.
#
my $rebuilt = $site->build();
 
#
#  Copy the assets into place.
#

bin/templer  view on Meta::CPAN

181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#  Run any post-build commands the user might have defined.
#
runCommands("post-build");
 
 
 
 
#
# All done.
#
my $duration = $timer->elapsed();
print "\nAll done: $rebuilt page(s) updated in $duration.\n"
  unless ( $CONFIG{ 'quiet' } );
 
exit(0);
 
 
 
 
#
#  Parse the command line

examples/complex/input/jquery.min.js  view on Meta::CPAN

1
2
/*! jQuery v1.8.3 jquery.com | jquery.org/license */
(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),function(e,n){t[n]=!0}),t}function H(e,n,r){if(r===t&&e.nodeType===1){var i="data-"+n.replace(P,"-$1").toLowerCase();r=e.getAttribute(i);if(typeof r=="string"){try{r=r==="true"?!0:r=...



( run in 0.892 second using v1.01-cache-2.11-cpan-87723dcf8b7 )