diff options
author | kpdecker <kpdecker@gmail.com> | 2015-04-20 02:25:53 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2015-04-20 02:25:53 -0500 |
commit | 0263aa48bc8c8cdcd332edd01a644a9a0fd1cc81 (patch) | |
tree | d95e54c7af562eb22346b32f5c8b6388555e7397 /bin | |
parent | ecf60ab1bfc2afb4202ec7a16f1754684825da39 (diff) | |
download | handlebars.js-0263aa48bc8c8cdcd332edd01a644a9a0fd1cc81.zip handlebars.js-0263aa48bc8c8cdcd332edd01a644a9a0fd1cc81.tar.gz handlebars.js-0263aa48bc8c8cdcd332edd01a644a9a0fd1cc81.tar.bz2 |
Run the precompiler module through es6 toolchain
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/handlebars | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/handlebars b/bin/handlebars index bf64784..4ed98b3 100755 --- a/bin/handlebars +++ b/bin/handlebars @@ -108,4 +108,4 @@ if (argv.help || (!argv.templates.length && !argv.version)) { return; } -return require('../lib/precompiler').cli(argv); +return require('../dist/cjs/precompiler').cli(argv); |