Removed debug message
This commit is contained in:
parent
97fb2edf87
commit
75fd2fce2a
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
* Removed debug message
|
||||
|
||||
## 4.3.0
|
||||
|
||||
* Added `jaelTemplatePreload` to preload all JAEL templates into a cache
|
||||
|
|
|
@ -85,7 +85,7 @@ Future<void> jaelTemplatePreload(
|
|||
if (f.basename.endsWith(fileExtension)) {
|
||||
var name = f.basename.split(".");
|
||||
if (name.length > 1) {
|
||||
print("View: ${name[0]}");
|
||||
//print("View: ${name[0]}");
|
||||
Document? processed = await _loadViewTemplate(viewsDirectory, name[0]);
|
||||
if (processed != null) {
|
||||
cache[name[0]] = processed;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel3_jael
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
description: Angel support for the Jael templating engine, similar to Blade or Liquid.
|
||||
homepage: https://angel3-framework.web.app/
|
||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/jael/angel_jael
|
||||
|
|
Loading…
Reference in a new issue