Skip to content

Releases: deligenius/view-engine

Release v10.6.0

28 Jun 04:21
6dacd74

Choose a tag to compare

v10.5.1d

20 Jun 01:37
4eadf3c

Choose a tag to compare

v10.5.1c

21 Apr 04:35
00d2419

Choose a tag to compare

Add basic eta support

usage

import { Application } from "https://deno.land/x/oak@v10.5.1/mod.ts";
import { viewEngine, ejsEngine, oakAdapter } from "https://deno.land/x/view_engine@v10.5.1c/mod.ts"

const app = new Application();

app.use(
  viewEngine(oakAdapter, etaEngine, {
    viewRoot: "./views/eta",
  })
);

app.use(async (ctx, next) => {
  ctx.render("index.ejs", { name: "John" } );
});

await app.listen({ port: 8000 });

v10.5.1b

21 Apr 04:13
12966fa

Choose a tag to compare

Remove ejs engine

ViewEngine v10.5.1

11 Apr 01:08
e7e3d85

Choose a tag to compare

View Engine is now matching the version of Oak

ViewEnging v10.5.1 works for Oak v10.5.1

  1. Remove factories, use direct engine import instead
  2. Remove cache
  3. Misc refactors

Release v1.5.0

05 Apr 05:34

Choose a tag to compare

  1. Use std@0.84 and it's compatible with oak@6.5.0
  2. Add denjucks engine back, thanks to @oscarotero, see #23

Release 1.4.5

22 Nov 05:20

Choose a tag to compare

Expose Handlebars hbs to allow registerHelper() work

Release 1.4.3

22 Nov 03:41

Choose a tag to compare

In order to sync the settings with deno.land with the newest version

Release v1.4.2

28 Oct 22:03

Choose a tag to compare

To allow deno.land release work with git, start tag with v

Release v1.4.1

12 Oct 18:19
76d3950

Choose a tag to compare

Fix type issues for Deno 1.4.0+

Thanks for @davyvong
#10