@theholocron/registry-doc 1.6.1 → 1.8.0
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 +7 -2
- package/package.json +2 -2
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,12 +94,14 @@ 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"),
|
|
100
101
|
"holocron-plugin-cloudflare": makeHolocronEntry("holocron-plugin-cloudflare", "plugins/cloudflare"),
|
|
101
102
|
"holocron-plugin-discord": makeHolocronEntry("holocron-plugin-discord", "plugins/discord"),
|
|
102
103
|
"holocron-plugin-doppler": makeHolocronEntry("holocron-plugin-doppler", "plugins/doppler"),
|
|
104
|
+
"holocron-plugin-fern": makeHolocronEntry("holocron-plugin-fern", "plugins/fern"),
|
|
103
105
|
"holocron-plugin-github": makeHolocronEntry("holocron-plugin-github", "plugins/github"),
|
|
104
106
|
"holocron-plugin-infisical": makeHolocronEntry("holocron-plugin-infisical", "plugins/infisical"),
|
|
105
107
|
"holocron-plugin-neon": makeHolocronEntry("holocron-plugin-neon", "plugins/neon"),
|
|
@@ -195,14 +197,17 @@ const getSkills = () => skills;
|
|
|
195
197
|
const getTemplates = () => templates;
|
|
196
198
|
const getThemes = () => themes;
|
|
197
199
|
const getUtils = () => utils;
|
|
200
|
+
const getTools = () => tools;
|
|
198
201
|
const getHolocron = () => ({
|
|
199
202
|
...cli,
|
|
200
|
-
...plugins
|
|
203
|
+
...plugins,
|
|
204
|
+
...tools
|
|
201
205
|
});
|
|
202
206
|
const getRegistry = () => ({
|
|
203
207
|
...clients,
|
|
204
208
|
...cli,
|
|
205
209
|
...plugins,
|
|
210
|
+
...tools,
|
|
206
211
|
...configs,
|
|
207
212
|
...utils,
|
|
208
213
|
...themes,
|
|
@@ -212,4 +217,4 @@ const getRegistry = () => ({
|
|
|
212
217
|
});
|
|
213
218
|
const getPackage = (slug) => getRegistry()[slug];
|
|
214
219
|
//#endregion
|
|
215
|
-
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.0",
|
|
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",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@theholocron/tsconfig": "^7.19.1",
|
|
37
37
|
"@theholocron/tsdown-config": "^7.19.1",
|
|
38
38
|
"@theholocron/vitest-config": "^7.19.1",
|
|
39
|
-
"@types/node": "^
|
|
39
|
+
"@types/node": "^26.3.0",
|
|
40
40
|
"@vitest/coverage-v8": "^4.1.10",
|
|
41
41
|
"prettier": "^3.6.2",
|
|
42
42
|
"tsdown": "^0.22.14",
|