mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 18:12:46 +08:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
"use strict";
|
|
|
|
const rawHandlebarsCompiler = require("./raw-handlebars-compiler");
|
|
|
|
module.exports = {
|
|
name: require("./package").name,
|
|
|
|
treeForApp() {
|
|
return rawHandlebarsCompiler(this.app.trees.app);
|
|
},
|
|
};
|