git-history-ui 1.0.1 → 1.0.3

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.
Files changed (51) hide show
  1. package/README.md +45 -244
  2. package/dist/backend/server.d.ts.map +1 -1
  3. package/dist/backend/server.js +30 -10
  4. package/dist/backend/server.js.map +1 -1
  5. package/dist/config/paths.d.ts +14 -0
  6. package/dist/config/paths.d.ts.map +1 -0
  7. package/dist/config/paths.js +35 -0
  8. package/dist/config/paths.js.map +1 -0
  9. package/package.json +8 -1
  10. package/public/index.html +0 -1
  11. package/.eslintrc.js +0 -21
  12. package/demo.js +0 -45
  13. package/frontend/.editorconfig +0 -17
  14. package/frontend/.vscode/extensions.json +0 -4
  15. package/frontend/.vscode/launch.json +0 -20
  16. package/frontend/.vscode/tasks.json +0 -42
  17. package/frontend/README.md +0 -59
  18. package/frontend/angular.json +0 -99
  19. package/frontend/package-lock.json +0 -10566
  20. package/frontend/package.json +0 -55
  21. package/frontend/proxy.conf.json +0 -7
  22. package/frontend/public/favicon.ico +0 -0
  23. package/frontend/src/app/app.component.ts +0 -598
  24. package/frontend/src/app/app.config.ts +0 -12
  25. package/frontend/src/app/app.css +0 -0
  26. package/frontend/src/app/app.html +0 -342
  27. package/frontend/src/app/app.routes.ts +0 -3
  28. package/frontend/src/app/app.spec.ts +0 -23
  29. package/frontend/src/app/app.ts +0 -12
  30. package/frontend/src/app/components/color-palette-selector/color-palette-selector.component.ts +0 -137
  31. package/frontend/src/app/components/commit-detail/commit-detail.component.ts +0 -327
  32. package/frontend/src/app/components/commit-graph/commit-graph.component.ts +0 -294
  33. package/frontend/src/app/components/commit-list/commit-list.component.ts +0 -199
  34. package/frontend/src/app/components/diff-viewer/diff-viewer.component.ts +0 -311
  35. package/frontend/src/app/models/color-palette.models.ts +0 -229
  36. package/frontend/src/app/models/git.models.ts +0 -39
  37. package/frontend/src/app/services/git.service.ts +0 -43
  38. package/frontend/src/index.html +0 -13
  39. package/frontend/src/main.ts +0 -6
  40. package/frontend/src/styles.css +0 -397
  41. package/frontend/tsconfig.app.json +0 -15
  42. package/frontend/tsconfig.json +0 -34
  43. package/frontend/tsconfig.spec.json +0 -14
  44. package/jest.config.js +0 -26
  45. package/src/__tests__/gitService.test.ts +0 -533
  46. package/src/__tests__/setup.ts +0 -25
  47. package/src/backend/dev-server.ts +0 -14
  48. package/src/backend/gitService.ts +0 -277
  49. package/src/backend/server.ts +0 -132
  50. package/src/cli.ts +0 -56
  51. package/tsconfig.json +0 -25
@@ -1,42 +0,0 @@
1
- {
2
- // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3
- "version": "2.0.0",
4
- "tasks": [
5
- {
6
- "type": "npm",
7
- "script": "start",
8
- "isBackground": true,
9
- "problemMatcher": {
10
- "owner": "typescript",
11
- "pattern": "$tsc",
12
- "background": {
13
- "activeOnStart": true,
14
- "beginsPattern": {
15
- "regexp": "(.*?)"
16
- },
17
- "endsPattern": {
18
- "regexp": "bundle generation complete"
19
- }
20
- }
21
- }
22
- },
23
- {
24
- "type": "npm",
25
- "script": "test",
26
- "isBackground": true,
27
- "problemMatcher": {
28
- "owner": "typescript",
29
- "pattern": "$tsc",
30
- "background": {
31
- "activeOnStart": true,
32
- "beginsPattern": {
33
- "regexp": "(.*?)"
34
- },
35
- "endsPattern": {
36
- "regexp": "bundle generation complete"
37
- }
38
- }
39
- }
40
- }
41
- ]
42
- }
@@ -1,59 +0,0 @@
1
- # Frontend
2
-
3
- This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.2.0.
4
-
5
- ## Development server
6
-
7
- To start a local development server, run:
8
-
9
- ```bash
10
- ng serve
11
- ```
12
-
13
- Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
14
-
15
- ## Code scaffolding
16
-
17
- Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
18
-
19
- ```bash
20
- ng generate component component-name
21
- ```
22
-
23
- For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
24
-
25
- ```bash
26
- ng generate --help
27
- ```
28
-
29
- ## Building
30
-
31
- To build the project run:
32
-
33
- ```bash
34
- ng build
35
- ```
36
-
37
- This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
38
-
39
- ## Running unit tests
40
-
41
- To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
42
-
43
- ```bash
44
- ng test
45
- ```
46
-
47
- ## Running end-to-end tests
48
-
49
- For end-to-end (e2e) testing, run:
50
-
51
- ```bash
52
- ng e2e
53
- ```
54
-
55
- Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
56
-
57
- ## Additional Resources
58
-
59
- For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
@@ -1,99 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
- "version": 1,
4
- "cli": {
5
- "packageManager": "npm",
6
- "analytics": "d562ce7a-00ba-44af-a685-e79fde7ddbdf"
7
- },
8
- "newProjectRoot": "projects",
9
- "projects": {
10
- "frontend": {
11
- "projectType": "application",
12
- "schematics": {},
13
- "root": "",
14
- "sourceRoot": "src",
15
- "prefix": "app",
16
- "architect": {
17
- "build": {
18
- "builder": "@angular/build:application",
19
- "options": {
20
- "browser": "src/main.ts",
21
- "polyfills": [
22
- "zone.js"
23
- ],
24
- "tsConfig": "tsconfig.app.json",
25
- "assets": [
26
- {
27
- "glob": "**/*",
28
- "input": "public"
29
- }
30
- ],
31
- "styles": [
32
- "src/styles.css"
33
- ]
34
- },
35
- "configurations": {
36
- "production": {
37
- "budgets": [
38
- {
39
- "type": "initial",
40
- "maximumWarning": "500kB",
41
- "maximumError": "1MB"
42
- },
43
- {
44
- "type": "anyComponentStyle",
45
- "maximumWarning": "4kB",
46
- "maximumError": "8kB"
47
- }
48
- ],
49
- "outputHashing": "all"
50
- },
51
- "development": {
52
- "optimization": false,
53
- "extractLicenses": false,
54
- "sourceMap": true
55
- }
56
- },
57
- "defaultConfiguration": "production"
58
- },
59
- "serve": {
60
- "builder": "@angular/build:dev-server",
61
- "options": {
62
- "proxyConfig": "proxy.conf.json"
63
- },
64
- "configurations": {
65
- "production": {
66
- "buildTarget": "frontend:build:production"
67
- },
68
- "development": {
69
- "buildTarget": "frontend:build:development"
70
- }
71
- },
72
- "defaultConfiguration": "development"
73
- },
74
- "extract-i18n": {
75
- "builder": "@angular/build:extract-i18n"
76
- },
77
- "test": {
78
- "builder": "@angular/build:karma",
79
- "options": {
80
- "polyfills": [
81
- "zone.js",
82
- "zone.js/testing"
83
- ],
84
- "tsConfig": "tsconfig.spec.json",
85
- "assets": [
86
- {
87
- "glob": "**/*",
88
- "input": "public"
89
- }
90
- ],
91
- "styles": [
92
- "src/styles.css"
93
- ]
94
- }
95
- }
96
- }
97
- }
98
- }
99
- }