git0 0.2.6 → 0.2.8
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/docs/404.html +2 -3
- package/docs/Footer/index.html +2 -3
- package/docs/assets/js/1df93b7f.d8c05d2c.js +2 -0
- package/docs/assets/js/22dd74f7.237398b4.js +1 -0
- package/docs/assets/js/28ab763d.5714aa16.js +1 -0
- package/docs/assets/js/299d276b.1a1baa1c.js +1 -0
- package/docs/assets/js/68cef36b.c312447e.js +1 -0
- package/docs/assets/js/c3a618e1.965a31da.js +1 -0
- package/docs/assets/js/{main.6b27aee7.js → main.cf858a7d.js} +2 -2
- package/docs/assets/js/runtime~main.7520dc36.js +1 -0
- package/docs/functions/{globals → git0}/index.html +9 -9
- package/docs/functions/github-api/index.html +149 -0
- package/docs/functions/index.html +4 -5
- package/docs/functions/modules/index.html +30 -0
- package/docs/index.html +3 -4
- package/docs/lunr-index-1749613752315.json +1 -0
- package/docs/lunr-index.json +1 -1
- package/docs/search-doc-1749613752315.json +1 -0
- package/docs/search-doc.json +1 -1
- package/docs/sitemap.xml +1 -1
- package/docs-config/.docusaurus/client-manifest.json +45 -33
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/p/docs-175.json +1 -0
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/p/index-466.json +1 -1
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-git-0-1-md-d3e.json +19 -0
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-git-0-md-299.json +19 -0
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-github-api-md-28a.json +23 -0
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-index-md-c3a.json +6 -2
- package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-modules-md-68c.json +19 -0
- package/docs-config/.docusaurus/docusaurus.config.mjs +2 -9
- package/docs-config/.docusaurus/globalData.json +14 -9
- package/docs-config/.docusaurus/registry.js +4 -3
- package/docs-config/.docusaurus/routes.js +13 -7
- package/docs-config/.docusaurus/routesChunkNames.json +11 -7
- package/docs-config/config/customize-docs.js +4 -2
- package/docs-config/docusaurus.config.ts +0 -9
- package/docs-config/src/functions/{globals.md → git0.md} +4 -2
- package/docs-config/src/functions/github-api.md +744 -0
- package/docs-config/src/functions/modules.md +4 -0
- package/docs-config/src/functions/typedoc-sidebar.cjs +12 -1
- package/docs-config/src/pages/index.tsx +289 -279
- package/docs-config/tsconfig.json +1 -1
- package/package.json +1 -1
- package/src/git0.js +2 -2
- package/src/github-api.js +1 -1
- package/docs/assets/js/1df93b7f.dfdf0ef3.js +0 -2
- package/docs/assets/js/22dd74f7.040a4546.js +0 -1
- package/docs/assets/js/4a829dc8.10d7db0a.js +0 -1
- package/docs/assets/js/c3a618e1.50a89e4d.js +0 -1
- package/docs/assets/js/d140250a.62af53aa.js +0 -1
- package/docs/assets/js/runtime~main.5c54c19c.js +0 -1
- package/docs/lunr-index-1749612068805.json +0 -1
- package/docs/search-doc-1749612068805.json +0 -1
- package/docs-config/src/index.md +0 -127
- /package/docs/assets/js/{1df93b7f.dfdf0ef3.js.LICENSE.txt → 1df93b7f.d8c05d2c.js.LICENSE.txt} +0 -0
- /package/docs/assets/js/{main.6b27aee7.js.LICENSE.txt → main.cf858a7d.js.LICENSE.txt} +0 -0
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
|
3
3
|
const typedocSidebar = {
|
|
4
|
-
items: [
|
|
4
|
+
items: [
|
|
5
|
+
{
|
|
6
|
+
type: "doc",
|
|
7
|
+
id: "functions/git0",
|
|
8
|
+
label: "git0"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
type: "doc",
|
|
12
|
+
id: "functions/github-api",
|
|
13
|
+
label: "github-api"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
5
16
|
};
|
|
6
17
|
module.exports = typedocSidebar.items;
|