git-history-ui 1.0.2 → 1.0.4
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/README.md +7 -7
- package/build/frontend/index.html +13 -0
- package/build/frontend/main-44CFNHDH.js +8 -0
- package/build/frontend/polyfills-5CFQRCPP.js +2 -0
- package/build/frontend/styles-26JPPBSI.css +1 -0
- package/dist/backend/server.d.ts.map +1 -1
- package/dist/backend/server.js +19 -5
- package/dist/backend/server.js.map +1 -1
- package/package.json +8 -2
- package/.dockerignore +0 -19
- package/.eslintrc.js +0 -21
- package/Dockerfile +0 -29
- package/demo.js +0 -45
- package/frontend/.editorconfig +0 -17
- package/frontend/.vscode/extensions.json +0 -4
- package/frontend/.vscode/launch.json +0 -20
- package/frontend/.vscode/tasks.json +0 -42
- package/frontend/README.md +0 -59
- package/frontend/angular.json +0 -99
- package/frontend/package-lock.json +0 -11272
- package/frontend/package.json +0 -58
- package/frontend/postcss.config.js +0 -6
- package/frontend/proxy.conf.json +0 -7
- package/frontend/src/app/app.component.ts +0 -598
- package/frontend/src/app/app.config.ts +0 -12
- package/frontend/src/app/app.css +0 -0
- package/frontend/src/app/app.html +0 -342
- package/frontend/src/app/app.routes.ts +0 -3
- package/frontend/src/app/app.spec.ts +0 -23
- package/frontend/src/app/app.ts +0 -12
- package/frontend/src/app/components/color-palette-selector/color-palette-selector.component.ts +0 -137
- package/frontend/src/app/components/commit-detail/commit-detail.component.ts +0 -327
- package/frontend/src/app/components/commit-graph/commit-graph.component.ts +0 -294
- package/frontend/src/app/components/commit-list/commit-list.component.ts +0 -199
- package/frontend/src/app/components/diff-viewer/diff-viewer.component.ts +0 -311
- package/frontend/src/app/models/color-palette.models.ts +0 -229
- package/frontend/src/app/models/git.models.ts +0 -39
- package/frontend/src/app/services/git.service.ts +0 -43
- package/frontend/src/index.html +0 -13
- package/frontend/src/main.ts +0 -6
- package/frontend/src/styles.css +0 -401
- package/frontend/tailwind.config.js +0 -11
- package/frontend/tsconfig.app.json +0 -15
- package/frontend/tsconfig.json +0 -34
- package/frontend/tsconfig.spec.json +0 -14
- package/jest.config.js +0 -26
- package/src/__tests__/gitService.test.ts +0 -533
- package/src/__tests__/setup.ts +0 -25
- package/src/backend/dev-server.ts +0 -14
- package/src/backend/gitService.ts +0 -277
- package/src/backend/server.ts +0 -140
- package/src/cli.ts +0 -56
- package/tsconfig.json +0 -25
- /package/{frontend/public → build/frontend}/favicon.ico +0 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A beautiful, modern web UI for visualizing git history with interactive commit g
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Run directly with npx (no installation needed)
|
|
9
|
-
npx git-history-ui
|
|
9
|
+
npx git-history-ui@latest
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
That's it! The application will start on `http://localhost:3000` and open your browser automatically.
|
|
@@ -25,22 +25,22 @@ That's it! The application will start on `http://localhost:3000` and open your b
|
|
|
25
25
|
### CLI Options
|
|
26
26
|
```bash
|
|
27
27
|
# Custom port
|
|
28
|
-
npx git-history-ui --port 8080
|
|
28
|
+
npx git-history-ui@latest --port 8080
|
|
29
29
|
|
|
30
30
|
# Filter by specific file
|
|
31
|
-
npx git-history-ui --file src/app.js
|
|
31
|
+
npx git-history-ui@latest --file src/app.js
|
|
32
32
|
|
|
33
33
|
# Filter by author
|
|
34
|
-
npx git-history-ui --author "your-name"
|
|
34
|
+
npx git-history-ui@latest --author "your-name"
|
|
35
35
|
|
|
36
36
|
# Filter by date range
|
|
37
|
-
npx git-history-ui --since 2024-01-01
|
|
37
|
+
npx git-history-ui@latest --since 2024-01-01
|
|
38
38
|
|
|
39
39
|
# Don't auto-open browser
|
|
40
|
-
npx git-history-ui --no-open
|
|
40
|
+
npx git-history-ui@latest --no-open
|
|
41
41
|
|
|
42
42
|
# Show help
|
|
43
|
-
npx git-history-ui --help
|
|
43
|
+
npx git-history-ui@latest --help
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
## 🏭 Production
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" data-beasties-container>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Frontend</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
9
|
+
<style>*,:before,:after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;line-height:1.6;color:#333;background-color:#f8f9fa}@media (prefers-color-scheme: dark){body{background-color:#1a1a1a;color:#e0e0e0}}*{transition:background-color .2s ease,border-color .2s ease,color .2s ease}</style><link rel="stylesheet" href="styles-26JPPBSI.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles-26JPPBSI.css"></noscript></head>
|
|
10
|
+
<body>
|
|
11
|
+
<app-root></app-root>
|
|
12
|
+
<script src="polyfills-5CFQRCPP.js" type="module"></script><script src="main-44CFNHDH.js" type="module"></script></body>
|
|
13
|
+
</html>
|