@theholocron/registry-doc 1.7.0 → 1.8.1
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/dist/index.d.mts +2 -1
- package/dist/index.mjs +6 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -13,6 +13,7 @@ declare const getSkills: () => LinksRegistry;
|
|
|
13
13
|
declare const getTemplates: () => LinksRegistry;
|
|
14
14
|
declare const getThemes: () => LinksRegistry;
|
|
15
15
|
declare const getUtils: () => LinksRegistry;
|
|
16
|
+
declare const getTools: () => LinksRegistry;
|
|
16
17
|
declare const getHolocron: () => {
|
|
17
18
|
[x: string]: LinkEntry;
|
|
18
19
|
};
|
|
@@ -21,4 +22,4 @@ declare const getRegistry: () => {
|
|
|
21
22
|
};
|
|
22
23
|
declare const getPackage: (slug: string) => LinkEntry;
|
|
23
24
|
//#endregion
|
|
24
|
-
export { type LinkEntry, type LinksRegistry, getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getUtils };
|
|
25
|
+
export { type LinkEntry, type LinksRegistry, getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getTools, getUtils };
|
package/dist/index.mjs
CHANGED
|
@@ -94,6 +94,7 @@ function makeHolocronEntry(slug, docsPath) {
|
|
|
94
94
|
};
|
|
95
95
|
}
|
|
96
96
|
const cli = { cli: makeHolocronEntry("cli", "cli") };
|
|
97
|
+
const tools = { "rollup-plugin-transform-template": makeHolocronEntry("rollup-plugin-transform-template", "rollup-plugin-transform-template") };
|
|
97
98
|
const plugins = {
|
|
98
99
|
"holocron-plugin-1password": makeHolocronEntry("holocron-plugin-1password", "plugins/1password"),
|
|
99
100
|
"holocron-plugin-clerk": makeHolocronEntry("holocron-plugin-clerk", "plugins/clerk"),
|
|
@@ -196,14 +197,17 @@ const getSkills = () => skills;
|
|
|
196
197
|
const getTemplates = () => templates;
|
|
197
198
|
const getThemes = () => themes;
|
|
198
199
|
const getUtils = () => utils;
|
|
200
|
+
const getTools = () => tools;
|
|
199
201
|
const getHolocron = () => ({
|
|
200
202
|
...cli,
|
|
201
|
-
...plugins
|
|
203
|
+
...plugins,
|
|
204
|
+
...tools
|
|
202
205
|
});
|
|
203
206
|
const getRegistry = () => ({
|
|
204
207
|
...clients,
|
|
205
208
|
...cli,
|
|
206
209
|
...plugins,
|
|
210
|
+
...tools,
|
|
207
211
|
...configs,
|
|
208
212
|
...utils,
|
|
209
213
|
...themes,
|
|
@@ -213,4 +217,4 @@ const getRegistry = () => ({
|
|
|
213
217
|
});
|
|
214
218
|
const getPackage = (slug) => getRegistry()[slug];
|
|
215
219
|
//#endregion
|
|
216
|
-
export { getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getUtils };
|
|
220
|
+
export { getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getTools, getUtils };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/registry-doc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Cross-repo package registry and link utilities for docs.",
|
|
5
5
|
"homepage": "https://docs.theholocron.dev/docs/registry-doc",
|
|
6
6
|
"bugs": "https://github.com/theholocron/docs/issues",
|