adjust compiler revision

This commit is contained in:
Nils Knappmeier
2019-09-21 16:00:43 +02:00
committed by Nils Knappmeier
parent 2078c727c6
commit 06b7224ed9
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -5,7 +5,7 @@ import {registerDefaultDecorators} from './decorators';
import logger from './logger';
export const VERSION = '4.2.1';
export const COMPILER_REVISION = 7;
export const COMPILER_REVISION = 8;
export const REVISION_CHANGES = {
1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
@@ -14,7 +14,8 @@ export const REVISION_CHANGES = {
4: '== 1.x.x',
5: '== 2.0.0-alpha.x',
6: '>= 2.0.0-beta.1',
7: '>= 4.0.0'
7: '>= 4.0.0 <4.3.0',
8: '>= 4.3.0'
};
const objectType = '[object Object]';
+1 -1
View File
@@ -1,6 +1,6 @@
define(['handlebars.runtime'], function(Handlebars) {
Handlebars = Handlebars["default"]; var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {};
return templates['empty'] = template({"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) {
return templates['empty'] = template({"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
return "";
},"useData":true});
});