astro-accelerator-utils 0.1.15 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.mts +2 -1
- package/index.mjs +2 -2
- package/lib/v1/authors.d.mts +1 -1
- package/lib/v1/authors.mjs +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Authors } from "./lib/v1/authors.mjs";
|
|
1
2
|
import { Cache } from "./lib/v1/cache.mjs";
|
|
2
3
|
import { DateFormatter } from "./lib/v1/dates.mjs";
|
|
3
4
|
import { Markdown } from "./lib/v1/markdown.mjs";
|
|
@@ -9,4 +10,4 @@ import * as PostOrdering from "./lib/postOrdering.mjs";
|
|
|
9
10
|
import * as PostPaging from "./lib/postPaging.mjs";
|
|
10
11
|
import * as FooterMenu from "./lib/footerMenu.mjs";
|
|
11
12
|
import * as Taxonomy from "./lib/taxonomy.mjs";
|
|
12
|
-
export {
|
|
13
|
+
export { Authors, Cache, DateFormatter, Markdown, Navigation, Posts, UrlFormatter, PostFiltering, PostOrdering, PostPaging, FooterMenu, NavigationX, Taxonomy };
|
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Authors } from './lib/v1/authors.mjs';
|
|
2
2
|
import { Cache } from './lib/v1/cache.mjs';
|
|
3
3
|
import { DateFormatter } from './lib/v1/dates.mjs';
|
|
4
4
|
import { Markdown } from './lib/v1/markdown.mjs';
|
|
@@ -14,7 +14,7 @@ import * as NavigationX from './lib/navigation.mjs';
|
|
|
14
14
|
import * as Taxonomy from './lib/taxonomy.mjs';
|
|
15
15
|
|
|
16
16
|
export {
|
|
17
|
-
|
|
17
|
+
Authors,
|
|
18
18
|
Cache,
|
|
19
19
|
DateFormatter,
|
|
20
20
|
Markdown,
|
package/lib/v1/authors.d.mts
CHANGED
|
@@ -14,7 +14,7 @@ export class Authors {
|
|
|
14
14
|
* @param {Frontmatter} frontmatter
|
|
15
15
|
* @returns {AuthorList}
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
forPost(frontmatter: Frontmatter): AuthorList;
|
|
18
18
|
/**
|
|
19
19
|
* Get a single author by id/slug
|
|
20
20
|
* @param {string} slug
|
package/lib/v1/authors.mjs
CHANGED