summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Fix test failure caused by yargsJohn Boehr2016-04-211-6/+1
| | | | | | In yargs 3.2, any non-truthy return value to check will fail: https://github.com/yargs/yargs/blob/master/CHANGELOG.md#302-20150213-1650-0000 It appears that this check is no longer necessary as the other contents of the check callback no longer exist: https://github.com/wycats/handlebars.js/commit/2e7a3bd70223c0e532a24290c7d817b951354541#diff-2aff13863648736946e83d70c5e63520L86 It appears the build failed for PR #1180, not sure why it was merged
* Use yargsBogdan Chadkin2016-02-111-3/+3
|
* Add support for string and stdin precompilationkpdecker2015-08-041-0/+11
| | | Fixes #1071
* Convert precompiler template loading to asynckpdecker2015-08-041-7/+11
|
* Refactor precompiler API into two phasekpdecker2015-08-041-6/+8
| | | Load templates and then parse them in a distinct operation. This will allow us to use other input sources such as stdin and strings.
* Run the precompiler module through es6 toolchainkpdecker2015-04-201-1/+1
|
* Fix --version flagkpdecker2015-02-281-1/+1
| | | | Fixes #966
* Add source map output support to the CLIkpdecker2014-11-081-0/+4
|
* Fix help message for CLIkpdecker2014-11-021-1/+13
| | | | Fixes #895
* Move precompiler to safer locationkpdecker2014-07-051-1/+1
| | | | | Attempts to avoid some of the Node vs. ES6 confusion between the different styles within the application. Also adds some simple tests in addition to the integration test.
* Knocking the indent back to what it was to make for a less scary-looking ↵Joel Wietelmann2014-05-101-86/+86
| | | | pull request
* Turning CLI precompiler into a wrapper around a module.Joel Wietelmann2014-05-101-228/+88
|
* Add version option to compilerkpdecker2014-03-051-0/+13
| | | Fixes #746
* Always process explicitly passed files in CLIkpdecker2014-01-171-3/+3
| | | Fixes #689
* Fixes issue where cli compiles non handlebars templateschoage2013-11-171-2/+2
|
* Use handlebars runtime from precompiled amd fileskpdecker2013-11-051-1/+1
| | | Fixes #644
* Fix CLI library loadingkpdecker2013-11-041-1/+1
| | | | Fixes #642
* Update precompiler for default outputkpdecker2013-10-121-1/+1
| | | Fixes #563
* Added BOM removal flag.Blessan Mathew2013-06-041-0/+9
| | | | | Byte order mark is now removed from the beginning of the files when b flag is used.
* Update to latest uglify libkpdecker2013-05-291-4/+1
|
* Fix for issue #517.Blessan Mathew2013-05-211-3/+7
| | | | | Now when compiiled with amd option and a single input argument, we are checking to see whether the input is a file or folder.
* If building AMD module and compiling multiple templates, return the fullJames Maroney2013-04-081-0/+7
| | | | templates (or partials) hash from the AMD module
* If building AMD modules, and only one template is being compiled,James Maroney2013-04-081-0/+2
| | | | return the compiled template from the AMD module
* Escape passed regexkpdecker2013-04-061-1/+2
|
* Merge branch 'master' of github.com:matteoagosti/handlebars.js into ↵kpdecker2013-04-061-2/+11
|\ | | | | | | | | | | | | matteoagosti-master Conflicts: bin/handlebars
| * Supporting custom template extensionMatteo Agosti2012-11-081-2/+11
| | | | | | | | Fix missing escape
* | Add namespace arg to handlebars binkpdecker2013-01-131-1/+11
| | | | | | Fixes #361
* | Update bin/handlebarsBrian Kaull2012-12-111-1/+1
| |
* | Adding partial precompilationBrian Kaull2012-11-261-1/+17
| | | | | | Also allowing to compile based on data getting passed in
* | Add CommonJS export option for template compilation.cpojer2012-11-221-2/+10
|/
* cmd flag to compile template with AMD stylePeter Hoffmann2012-07-231-2/+22
|
* Add semicolon to the generated anonymous javascript function since it could ↵Steeve Lennmark2011-10-271-1/+1
| | | | | | break code following it. Example: (function(){})()/* this is the same as undefined() */(function(){})()
* Fix copy in command line utilitykpdecker2011-09-041-2/+2
|
* Add simple output mode.kpdecker2011-08-221-3/+26
|
* Cleanup stored template names.kpdecker2011-08-221-3/+15
|
* Output multiple templates, storing into the Handlebars.template objectkpdecker2011-08-221-16/+36
|
* Examine all passed names in the template checkkpdecker2011-08-221-7/+10
|
* Minimize js commandline optionkpdecker2011-08-221-1/+14
|
* File output commandline optionkpdecker2011-08-221-1/+11
|
* Known helpers command line options.kpdecker2011-08-221-1/+27
|
* Use optimist to perform validation.kpdecker2011-08-221-9/+16
|
* Add template call to the bin outputkpdecker2011-07-311-1/+1
|
* Update the bin to use the precompile APIkpdecker2011-07-301-3/+1
|
* Simple node template compilerkpdecker2011-07-301-0/+27