shadowfacts.net/lib/generate/index.ts

24 lines
402 B
TypeScript
Raw Normal View History

2020-08-22 02:37:57 +00:00
import archive from "./archive";
2019-01-04 18:36:40 +00:00
import copy from "./copy";
2019-01-04 18:14:53 +00:00
import css from "./css";
2019-09-17 19:30:47 +00:00
import errors from "./errors";
2019-01-04 18:14:53 +00:00
import homepage from "./homepage";
import posts from "./posts";
2020-07-09 18:10:39 +00:00
import * as rss from "./rss";
2020-08-29 16:09:42 +00:00
import tags from "./tags";
2019-01-04 18:14:53 +00:00
import tutorials from "./tutorials";
2020-01-28 00:31:59 +00:00
import years from "./years";
2019-01-04 18:14:53 +00:00
export = {
2020-08-22 02:37:57 +00:00
archive,
2019-01-04 18:36:40 +00:00
copy,
2019-01-04 18:14:53 +00:00
css,
2019-09-17 19:30:47 +00:00
errors,
2019-01-04 18:14:53 +00:00
homepage,
posts,
rss,
2020-08-29 16:09:42 +00:00
tags,
2020-01-28 00:31:59 +00:00
tutorials,
years,
2019-09-17 19:30:47 +00:00
};