@theholocron/registry-doc 1.12.0 → 1.13.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 CHANGED
@@ -14,6 +14,7 @@ declare const getTemplates: () => LinksRegistry;
14
14
  declare const getThemes: () => LinksRegistry;
15
15
  declare const getUtils: () => LinksRegistry;
16
16
  declare const getTools: () => LinksRegistry;
17
+ declare const getObservability: () => LinksRegistry;
17
18
  declare const getHolocron: () => {
18
19
  [x: string]: LinkEntry;
19
20
  };
@@ -22,4 +23,4 @@ declare const getRegistry: () => {
22
23
  };
23
24
  declare const getPackage: (slug: string) => LinkEntry;
24
25
  //#endregion
25
- export { type LinkEntry, type LinksRegistry, getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getTools, getUtils };
26
+ export { type LinkEntry, type LinksRegistry, getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getObservability, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getTools, getUtils };
package/dist/index.mjs CHANGED
@@ -6,7 +6,7 @@ const GITHUB_BASE = `https://github.com/${ORG}`;
6
6
  const NPM_BASE = "https://www.npmjs.com/package";
7
7
  //#endregion
8
8
  //#region src/clients.ts
9
- const github$6 = `${GITHUB_BASE}/clients`;
9
+ const github$7 = `${GITHUB_BASE}/clients`;
10
10
  function makeClientEntry(slug, docsPath, sandboxUrl) {
11
11
  const pkg = `${SCOPE}/${slug}`;
12
12
  return {
@@ -14,7 +14,7 @@ function makeClientEntry(slug, docsPath, sandboxUrl) {
14
14
  package: pkg,
15
15
  docsUrl: `${DOCS_BASE}/clients/${docsPath}`,
16
16
  npmUrl: `${NPM_BASE}/${pkg}`,
17
- githubUrl: github$6,
17
+ githubUrl: github$7,
18
18
  sandboxUrl
19
19
  };
20
20
  }
@@ -37,7 +37,7 @@ const clients = {
37
37
  };
38
38
  //#endregion
39
39
  //#region src/configs.ts
40
- const github$5 = `${GITHUB_BASE}/configs`;
40
+ const github$6 = `${GITHUB_BASE}/configs`;
41
41
  function makeConfigEntry(slug, docsPath) {
42
42
  const pkg = `${SCOPE}/${slug}`;
43
43
  return {
@@ -45,7 +45,7 @@ function makeConfigEntry(slug, docsPath) {
45
45
  package: pkg,
46
46
  docsUrl: `${DOCS_BASE}/configs/${docsPath}`,
47
47
  npmUrl: `${NPM_BASE}/${pkg}`,
48
- githubUrl: github$5
48
+ githubUrl: github$6
49
49
  };
50
50
  }
51
51
  const configs = {
@@ -68,7 +68,7 @@ const configs = {
68
68
  };
69
69
  //#endregion
70
70
  //#region src/docs.ts
71
- const github$4 = `${GITHUB_BASE}/docs`;
71
+ const github$5 = `${GITHUB_BASE}/docs`;
72
72
  function makeDocsEntry(slug, docsPath) {
73
73
  const pkg = `${SCOPE}/${slug}`;
74
74
  return {
@@ -76,13 +76,13 @@ function makeDocsEntry(slug, docsPath) {
76
76
  package: pkg,
77
77
  docsUrl: `${DOCS_BASE}/docs/${docsPath}`,
78
78
  npmUrl: `${NPM_BASE}/${pkg}`,
79
- githubUrl: github$4
79
+ githubUrl: github$5
80
80
  };
81
81
  }
82
82
  const docs = { "registry-doc": makeDocsEntry("registry-doc", "registry-doc") };
83
83
  //#endregion
84
84
  //#region src/holocron.ts
85
- const github$3 = `${GITHUB_BASE}/holocron`;
85
+ const github$4 = `${GITHUB_BASE}/holocron`;
86
86
  function makeHolocronEntry(slug, docsPath) {
87
87
  const pkg = `${SCOPE}/${slug}`;
88
88
  return {
@@ -90,14 +90,13 @@ function makeHolocronEntry(slug, docsPath) {
90
90
  package: pkg,
91
91
  docsUrl: `${DOCS_BASE}/holocron/${docsPath}`,
92
92
  npmUrl: `${NPM_BASE}/${pkg}`,
93
- githubUrl: github$3
93
+ githubUrl: github$4
94
94
  };
95
95
  }
96
96
  const cli = { cli: makeHolocronEntry("cli", "cli") };
97
97
  const tools = {
98
98
  astromech: makeHolocronEntry("astromech", "commands/run"),
99
99
  datapad: makeHolocronEntry("datapad", "config"),
100
- logger: makeHolocronEntry("logger", "logging"),
101
100
  "rollup-plugin-transform-template": makeHolocronEntry("rollup-plugin-transform-template", "rollup-plugin-transform-template")
102
101
  };
103
102
  const plugins = {
@@ -118,6 +117,20 @@ const plugins = {
118
117
  "holocron-plugin-vercel": makeHolocronEntry("holocron-plugin-vercel", "plugins/vercel")
119
118
  };
120
119
  //#endregion
120
+ //#region src/observability.ts
121
+ const github$3 = `${GITHUB_BASE}/observability`;
122
+ function makeObservabilityEntry(slug, docsPath) {
123
+ const pkg = `${SCOPE}/${slug}`;
124
+ return {
125
+ slug,
126
+ package: pkg,
127
+ docsUrl: `${DOCS_BASE}/observability/${docsPath}`,
128
+ npmUrl: `${NPM_BASE}/${pkg}`,
129
+ githubUrl: github$3
130
+ };
131
+ }
132
+ const observability = { observability: makeObservabilityEntry("observability", "") };
133
+ //#endregion
121
134
  //#region src/skills.ts
122
135
  const github$2 = `${GITHUB_BASE}/skills`;
123
136
  function makeSkillEntry(slug, docsPath) {
@@ -204,6 +217,7 @@ const getTemplates = () => templates;
204
217
  const getThemes = () => themes;
205
218
  const getUtils = () => utils;
206
219
  const getTools = () => tools;
220
+ const getObservability = () => observability;
207
221
  const getHolocron = () => ({
208
222
  ...cli,
209
223
  ...plugins,
@@ -214,6 +228,7 @@ const getRegistry = () => ({
214
228
  ...cli,
215
229
  ...plugins,
216
230
  ...tools,
231
+ ...observability,
217
232
  ...configs,
218
233
  ...utils,
219
234
  ...themes,
@@ -223,4 +238,4 @@ const getRegistry = () => ({
223
238
  });
224
239
  const getPackage = (slug) => getRegistry()[slug];
225
240
  //#endregion
226
- export { getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getOrg, getPackage, getPlugins, getRegistry, getScope, getSkills, getTemplates, getThemes, getTools, getUtils };
241
+ export { getCli, getClients, getConfigs, getDocs, getDocsBaseUrl, getGitHubBaseUrl, getHolocron, getObservability, 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.12.0",
3
+ "version": "1.13.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",
@@ -31,11 +31,11 @@
31
31
  ],
32
32
  "devDependencies": {
33
33
  "@codecov/rollup-plugin": "^2.0.1",
34
- "@theholocron/eslint-config": "^7.24.1",
35
- "@theholocron/prettier-config": "^7.19.1",
36
- "@theholocron/tsconfig": "^7.19.1",
37
- "@theholocron/tsdown-config": "^7.19.1",
38
- "@theholocron/vitest-config": "^7.19.1",
34
+ "@theholocron/eslint-config": "^8.2.0",
35
+ "@theholocron/prettier-config": "^8.2.0",
36
+ "@theholocron/tsconfig": "^8.2.0",
37
+ "@theholocron/tsdown-config": "^8.2.0",
38
+ "@theholocron/vitest-config": "^8.2.0",
39
39
  "@types/node": "^26.3.0",
40
40
  "@vitest/coverage-v8": "^4.1.10",
41
41
  "prettier": "^3.6.2",