@devframes/plugin-git 0.0.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/LICENSE.md +21 -0
- package/README.md +94 -0
- package/bin.mjs +3 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +12 -0
- package/dist/client/404/index.html +1 -0
- package/dist/client/404.html +1 -0
- package/dist/client/__next.__PAGE__.txt +6 -0
- package/dist/client/__next._full.txt +14 -0
- package/dist/client/__next._head.txt +5 -0
- package/dist/client/__next._index.txt +5 -0
- package/dist/client/__next._tree.txt +2 -0
- package/dist/client/_next/static/chunks/02~fscl7ckl8~.js +5 -0
- package/dist/client/_next/static/chunks/03~yq9q893hmn.js +1 -0
- package/dist/client/_next/static/chunks/0cby-xtlytqc8.js +31 -0
- package/dist/client/_next/static/chunks/0e1~n36m7gfkb.js +1 -0
- package/dist/client/_next/static/chunks/0f-3h51aw8u6x.js +1 -0
- package/dist/client/_next/static/chunks/0fh_ktutzk5fe.js +1 -0
- package/dist/client/_next/static/chunks/0o2sgd3e~ptl1.css +8 -0
- package/dist/client/_next/static/chunks/turbopack-0_ztfbn7~a1nl.js +1 -0
- package/dist/client/_next/static/hfdjoy_Phicjdm2uzC1Xt/_buildManifest.js +16 -0
- package/dist/client/_next/static/hfdjoy_Phicjdm2uzC1Xt/_clientMiddlewareManifest.js +1 -0
- package/dist/client/_next/static/hfdjoy_Phicjdm2uzC1Xt/_ssgManifest.js +1 -0
- package/dist/client/_not-found/__next._full.txt +15 -0
- package/dist/client/_not-found/__next._head.txt +5 -0
- package/dist/client/_not-found/__next._index.txt +5 -0
- package/dist/client/_not-found/__next._not-found.__PAGE__.txt +5 -0
- package/dist/client/_not-found/__next._not-found.txt +5 -0
- package/dist/client/_not-found/__next._tree.txt +2 -0
- package/dist/client/_not-found/index.html +1 -0
- package/dist/client/_not-found/index.txt +15 -0
- package/dist/client/index.html +1 -0
- package/dist/client/index.txt +14 -0
- package/dist/index.d.mts +205 -0
- package/dist/index.mjs +2 -0
- package/dist/src-Bm_Zrtej.mjs +756 -0
- package/package.json +80 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026-PRESENT Anthony Fu <https://github.com/antfu>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# @devframes/plugin-git
|
|
2
|
+
|
|
3
|
+
> [!WARNING] Experimental
|
|
4
|
+
> This plugin is experimental and may change without a major version bump until
|
|
5
|
+
> it stabilizes.
|
|
6
|
+
|
|
7
|
+
Git integration for [devframe](https://github.com/devframes/devframe) — a
|
|
8
|
+
repository dashboard with a **Next.js App Router + shadcn/ui** SPA over
|
|
9
|
+
type-safe RPC. The host process shells out to `git` and exposes the repository;
|
|
10
|
+
the same bundle runs as a live dev server or a fully static deployment.
|
|
11
|
+
|
|
12
|
+
Status, a SourceTree-style **commit graph**, branches, and diffs are read-only;
|
|
13
|
+
staging, unstaging, and committing are available when write mode is enabled. The
|
|
14
|
+
UI follows the system **light/dark** preference with a manual toggle.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```sh
|
|
19
|
+
npm i -D @devframes/plugin-git
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Standalone CLI
|
|
23
|
+
|
|
24
|
+
Run the dashboard against the current repository:
|
|
25
|
+
|
|
26
|
+
```sh
|
|
27
|
+
npx devframe-git # dev server (live RPC over WebSocket)
|
|
28
|
+
npx devframe-git --write # also enable staging / committing from the UI
|
|
29
|
+
npx devframe-git build # static deploy → dist-static/
|
|
30
|
+
npx devframe-git --port 4000
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Programmatic
|
|
34
|
+
|
|
35
|
+
`createGitDevframe(options)` returns a devframe definition you can mount into
|
|
36
|
+
any host with devframe's adapters, or drive yourself.
|
|
37
|
+
|
|
38
|
+
```ts
|
|
39
|
+
import { createGitDevframe } from '@devframes/plugin-git'
|
|
40
|
+
import { createCli } from 'devframe/adapters/cli'
|
|
41
|
+
|
|
42
|
+
await createCli(createGitDevframe({ repoRoot: process.cwd() })).parse()
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
| Option | Default | Description |
|
|
46
|
+
|--------|---------|-------------|
|
|
47
|
+
| `repoRoot` | the devframe `cwd` | Repository directory to inspect. |
|
|
48
|
+
| `basePath` | adapter-resolved | Mount path (`/` standalone, `/__git/` hosted). |
|
|
49
|
+
| `distDir` | bundled SPA | Override the served SPA directory. |
|
|
50
|
+
| `port` | `9710` | Preferred dev-server port. |
|
|
51
|
+
| `write` | `false` | Enable staging, unstaging, and committing from the UI. |
|
|
52
|
+
|
|
53
|
+
## RPC surface
|
|
54
|
+
|
|
55
|
+
The read functions are each a `query` with `snapshot: true`: resolved live over
|
|
56
|
+
WebSocket in dev, and served from a snapshot baked at build time for static
|
|
57
|
+
deploys. Each degrades to an empty, `isRepo: false` result outside a git
|
|
58
|
+
repository.
|
|
59
|
+
|
|
60
|
+
- `git:status` — branch, upstream tracking (ahead/behind), staged / unstaged /
|
|
61
|
+
untracked files, parsed from `git status --porcelain=v2`. Reports `canWrite`.
|
|
62
|
+
- `git:log` — paginated commit history (`limit` / `skip`) including parent
|
|
63
|
+
hashes, which drive the commit graph.
|
|
64
|
+
- `git:branches` — local branches with SHA, upstream, ahead/behind, tip subject.
|
|
65
|
+
- `git:diff` — per-file added/deleted counts for the working tree or index, plus
|
|
66
|
+
a unified patch for a selected file.
|
|
67
|
+
|
|
68
|
+
Write actions are `action` functions, registered only when write mode is enabled
|
|
69
|
+
(`createGitDevframe({ write: true })` or the `--write` flag) and gated behind
|
|
70
|
+
`status.canWrite` in the UI. Each returns fresh status (commit returns a result):
|
|
71
|
+
|
|
72
|
+
- `git:stage` — `git add` the given paths.
|
|
73
|
+
- `git:unstage` — `git restore --staged` the given paths.
|
|
74
|
+
- `git:commit` — commit the staged changes with a message.
|
|
75
|
+
|
|
76
|
+
## Develop
|
|
77
|
+
|
|
78
|
+
```sh
|
|
79
|
+
pnpm -C plugins/git dev # client (Next.js HMR) + RPC backend together
|
|
80
|
+
pnpm -C plugins/git build # tsdown (node) + next build (SPA) → dist/
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
`pnpm dev` starts the Next.js dev server (with hot-reload) and the devframe
|
|
84
|
+
RPC/WebSocket backend at the same time, then prints both URLs — open the UI one.
|
|
85
|
+
The SPA connects to the backend over the WebSocket port carried in
|
|
86
|
+
`NEXT_PUBLIC_DEVFRAME_WS`. Override ports with `PORT` (UI) and
|
|
87
|
+
`DEVFRAME_GIT_PORT` (backend). Run a single side with `dev:client` or
|
|
88
|
+
`dev:server`.
|
|
89
|
+
|
|
90
|
+
The SPA is a standard shadcn/ui setup (Tailwind v4, `components/ui/*`). Three
|
|
91
|
+
Next.js settings in `src/client/next.config.mjs` keep it portable: `output:
|
|
92
|
+
'export'` (devframe owns the server), `assetPrefix: '.'` (relative assets so the
|
|
93
|
+
same bundle works at any base), and `trailingSlash: true` (composes with
|
|
94
|
+
devframe's static directory-with-index resolution).
|
package/bin.mjs
ADDED
package/dist/cli.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/dist/cli.mjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { t as createGitDevframe } from "./src-Bm_Zrtej.mjs";
|
|
2
|
+
import process from "node:process";
|
|
3
|
+
import { createCli } from "devframe/adapters/cli";
|
|
4
|
+
//#region src/cli.ts
|
|
5
|
+
createCli(createGitDevframe(), { onReady({ origin }) {
|
|
6
|
+
console.error(`\n @devframes/plugin-git ready at ${origin}\n`);
|
|
7
|
+
} }).parse().catch((error) => {
|
|
8
|
+
console.error(error);
|
|
9
|
+
process.exit(1);
|
|
10
|
+
});
|
|
11
|
+
//#endregion
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="./_next/static/chunks/0o2sgd3e~ptl1.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="./_next/static/chunks/0cby-xtlytqc8.js"/><script src="./_next/static/chunks/02~fscl7ckl8~.js" async=""></script><script src="./_next/static/chunks/0f-3h51aw8u6x.js" async=""></script><script src="./_next/static/chunks/turbopack-0_ztfbn7~a1nl.js" async=""></script><script src="./_next/static/chunks/0e1~n36m7gfkb.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Git Dashboard</title><meta name="description" content="A devframe Git integration with a Next.js App Router + shadcn/ui SPA."/><script>(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'&&t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();</script><script src="./_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="./_next/static/chunks/0cby-xtlytqc8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[3510,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\"]\n3:I[17923,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\"]\n4:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"ViewportBoundary\"]\na:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"MetadataBoundary\"]\nc:I[48776,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\",1]\n:HL[\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"./_next/static/chunks/0e1~n36m7gfkb.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'\u0026\u0026t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();\"}}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"hfdjoy_Phicjdm2uzC1Xt\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Git Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A devframe Git integration with a Next.js App Router + shadcn/ui SPA.\"}]]\n"])</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="./_next/static/chunks/0o2sgd3e~ptl1.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="./_next/static/chunks/0cby-xtlytqc8.js"/><script src="./_next/static/chunks/02~fscl7ckl8~.js" async=""></script><script src="./_next/static/chunks/0f-3h51aw8u6x.js" async=""></script><script src="./_next/static/chunks/turbopack-0_ztfbn7~a1nl.js" async=""></script><script src="./_next/static/chunks/0e1~n36m7gfkb.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Git Dashboard</title><meta name="description" content="A devframe Git integration with a Next.js App Router + shadcn/ui SPA."/><script>(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'&&t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();</script><script src="./_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="./_next/static/chunks/0cby-xtlytqc8.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[3510,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\"]\n3:I[17923,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\"]\n4:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"ViewportBoundary\"]\na:I[24417,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"MetadataBoundary\"]\nc:I[48776,[\"./_next/static/chunks/0e1~n36m7gfkb.js\"],\"default\",1]\n:HL[\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"./_next/static/chunks/0e1~n36m7gfkb.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'\u0026\u0026t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();\"}}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/chunks/0o2sgd3e~ptl1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"hfdjoy_Phicjdm2uzC1Xt\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[[\"$\",\"title\",\"0\",{\"children\":\"Git Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A devframe Git integration with a Next.js App Router + shadcn/ui SPA.\"}]]\n"])</script></body></html>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[53567,["./_next/static/chunks/0e1~n36m7gfkb.js","./_next/static/chunks/0fh_ktutzk5fe.js"],"Dashboard"]
|
|
3
|
+
3:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"OutletBoundary"]
|
|
4
|
+
4:"$Sreact.suspense"
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{}],[["$","script","script-0",{"src":"./_next/static/chunks/0fh_ktutzk5fe.js","async":true}]],["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"hfdjoy_Phicjdm2uzC1Xt"}
|
|
6
|
+
5:null
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[3510,["./_next/static/chunks/0e1~n36m7gfkb.js"],"default"]
|
|
3
|
+
3:I[17923,["./_next/static/chunks/0e1~n36m7gfkb.js"],"default"]
|
|
4
|
+
4:I[53567,["./_next/static/chunks/0e1~n36m7gfkb.js","./_next/static/chunks/0fh_ktutzk5fe.js"],"Dashboard"]
|
|
5
|
+
5:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"OutletBoundary"]
|
|
6
|
+
6:"$Sreact.suspense"
|
|
7
|
+
8:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"ViewportBoundary"]
|
|
8
|
+
a:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"MetadataBoundary"]
|
|
9
|
+
c:I[48776,["./_next/static/chunks/0e1~n36m7gfkb.js"],"default",1]
|
|
10
|
+
:HL["./_next/static/chunks/0o2sgd3e~ptl1.css","style"]
|
|
11
|
+
0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"./_next/static/chunks/0o2sgd3e~ptl1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"./_next/static/chunks/0e1~n36m7gfkb.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'&&t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();"}}]}],["$","body",null,{"children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{}],[["$","script","script-0",{"src":"./_next/static/chunks/0fh_ktutzk5fe.js","async":true,"nonce":"$undefined"}]],["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[["$","link","0",{"rel":"stylesheet","href":"./_next/static/chunks/0o2sgd3e~ptl1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"hfdjoy_Phicjdm2uzC1Xt"}
|
|
12
|
+
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
13
|
+
7:null
|
|
14
|
+
b:[["$","title","0",{"children":"Git Dashboard"}],["$","meta","1",{"name":"description","content":"A devframe Git integration with a Next.js App Router + shadcn/ui SPA."}]]
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"ViewportBoundary"]
|
|
3
|
+
3:I[24417,["./_next/static/chunks/0e1~n36m7gfkb.js"],"MetadataBoundary"]
|
|
4
|
+
4:"$Sreact.suspense"
|
|
5
|
+
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Git Dashboard"}],["$","meta","1",{"name":"description","content":"A devframe Git integration with a Next.js App Router + shadcn/ui SPA."}]]}]}]}],null]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"hfdjoy_Phicjdm2uzC1Xt"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[3510,["./_next/static/chunks/0e1~n36m7gfkb.js"],"default"]
|
|
3
|
+
3:I[17923,["./_next/static/chunks/0e1~n36m7gfkb.js"],"default"]
|
|
4
|
+
:HL["./_next/static/chunks/0o2sgd3e~ptl1.css","style"]
|
|
5
|
+
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"./_next/static/chunks/0o2sgd3e~ptl1.css","precedence":"next"}],["$","script","script-0",{"src":"./_next/static/chunks/0e1~n36m7gfkb.js","async":true}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"(function(){try{var k='devframe-git-theme';var t=localStorage.getItem(k);if(t!=='light'&&t!=='dark'){t=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';}if(t==='dark')document.documentElement.classList.add('dark');}catch(e){document.documentElement.classList.add('dark');}})();"}}]}],["$","body",null,{"children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"hfdjoy_Phicjdm2uzC1Xt"}
|