gitlab-radiator 5.4.0 → 5.5.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/README.md +1 -1
- package/package.json +10 -10
- package/public/client.js +1 -1
- package/public/client.less +5 -0
- package/public/colors.less +2 -0
- package/src/config.js +2 -0
- package/src/gitlab/pipelines.js +1 -0
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ Optional configuration properties:
|
|
|
98
98
|
- `port` - HTTP port to listen on. Default value is 3000.
|
|
99
99
|
- `zoom` - View zoom factor (to make your projects fit a display nicely). Default value is 1.0
|
|
100
100
|
- `columns` - Number of columns to display (to fit more projects on screen). Default value is 1
|
|
101
|
-
- `colors` - Define some custom colors. Available colors `success-text, success-background, failed-text, failed-background, running-text, running-background, pending-text, pending-background, skipped-text, skipped-background, created-text, created-background, light-text, dark-text, background, project-background, group-background, error-message-text, error-message-background` (you may have a look at `/public/colors.less`, the colorNames from config will replace value for `@<colorname>-color` less variable)
|
|
101
|
+
- `colors` - Define some custom colors. Available colors `success-text, success-background, failed-text, failed-background, failed-allowed-text, failed-allowed-background, running-text, running-background, pending-text, pending-background, skipped-text, skipped-background, created-text, created-background, light-text, dark-text, background, project-background, group-background, error-message-text, error-message-background` (you may have a look at `/public/colors.less`, the colorNames from config will replace value for `@<colorname>-color` less variable)
|
|
102
102
|
|
|
103
103
|
Example yaml syntax:
|
|
104
104
|
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"type": "module",
|
|
8
8
|
"description": "The missing GitLab build radiator view",
|
|
9
|
-
"version": "5.
|
|
9
|
+
"version": "5.5.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"bin": {
|
|
12
12
|
"gitlab-radiator": "bin/gitlab-radiator.js"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"axios": "1.13.
|
|
44
|
+
"axios": "1.13.4",
|
|
45
45
|
"basic-auth": "2.0.1",
|
|
46
46
|
"compression": "1.8.1",
|
|
47
47
|
"esm": "3.2.25",
|
|
@@ -61,29 +61,29 @@
|
|
|
61
61
|
"@types/js-yaml": "4.0.9",
|
|
62
62
|
"@types/less": "3.0.8",
|
|
63
63
|
"@types/mocha": "10.0.10",
|
|
64
|
-
"@types/react": "19.2.
|
|
64
|
+
"@types/react": "19.2.13",
|
|
65
65
|
"@types/react-dom": "19.2.3",
|
|
66
66
|
"@types/webpack-env": "1.18.8",
|
|
67
67
|
"@types/webpack-hot-middleware": "2.25.12",
|
|
68
68
|
"chai": "6.2.2",
|
|
69
69
|
"core-js": "3.48.0",
|
|
70
|
-
"css-loader": "7.1.
|
|
70
|
+
"css-loader": "7.1.3",
|
|
71
71
|
"eslint": "9.39.2",
|
|
72
72
|
"eslint-plugin-mocha": "11.2.0",
|
|
73
73
|
"eslint-plugin-react": "7.37.5",
|
|
74
74
|
"eslint-plugin-react-hooks": "7.0.1",
|
|
75
|
-
"globals": "17.
|
|
76
|
-
"less-loader": "12.3.
|
|
75
|
+
"globals": "17.3.0",
|
|
76
|
+
"less-loader": "12.3.1",
|
|
77
77
|
"mocha": "11.7.5",
|
|
78
78
|
"normalize.css": "8.0.1",
|
|
79
|
-
"react": "19.2.
|
|
80
|
-
"react-dom": "19.2.
|
|
79
|
+
"react": "19.2.4",
|
|
80
|
+
"react-dom": "19.2.4",
|
|
81
81
|
"socket.io-client": "4.8.3",
|
|
82
82
|
"style-loader": "4.0.0",
|
|
83
83
|
"ts-loader": "9.5.4",
|
|
84
84
|
"typescript": "5.9.3",
|
|
85
|
-
"typescript-eslint": "8.
|
|
86
|
-
"webpack": "5.
|
|
85
|
+
"typescript-eslint": "8.54.0",
|
|
86
|
+
"webpack": "5.105.0",
|
|
87
87
|
"webpack-cli": "6.0.1",
|
|
88
88
|
"webpack-dev-middleware": "7.4.5",
|
|
89
89
|
"webpack-hot-middleware": "2.26.1",
|