gitlab-radiator 4.0.0 → 4.1.2

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 CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  ## Pre-requisites
14
14
 
15
- - Node.js v14 or newer
15
+ - Node.js v16.17 or newer
16
16
  - A modern web browser
17
17
  - An account in https://gitlab.com or an onsite installation of the [GitLab software package](https://about.gitlab.com/products).
18
18
 
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ process.env.NODE_ENV = 'production'
4
+
5
+ await import('../src/app.js')
package/package.json CHANGED
@@ -4,17 +4,18 @@
4
4
  "name": "heikkipora",
5
5
  "email": "heikki.pora@gmail.com"
6
6
  },
7
+ "type": "module",
7
8
  "description": "The missing GitLab build radiator view",
8
- "version": "4.0.0",
9
+ "version": "4.1.2",
9
10
  "license": "MIT",
10
11
  "bin": {
11
- "gitlab-radiator": "bin/gitlab-radiator"
12
+ "gitlab-radiator": "bin/gitlab-radiator.js"
12
13
  },
13
14
  "scripts": {
14
15
  "build": "./build-npm",
15
- "start": "babel-node src/app.js",
16
+ "start": "node src/app.js",
16
17
  "eslint": "eslint --fix src/* bin/* test/*",
17
- "test": "mocha --require @babel/register --timeout 20000 test/*.js test/**/*.js"
18
+ "test": "mocha --timeout 20000 test/*.js test/**/*.js"
18
19
  },
19
20
  "engines": {
20
21
  "node": ">=16.17.0"
@@ -38,7 +39,6 @@
38
39
  }
39
40
  ],
40
41
  "dependencies": {
41
- "@babel/runtime": "7.23.2",
42
42
  "axios": "1.6.1",
43
43
  "basic-auth": "2.0.1",
44
44
  "compression": "1.7.4",
@@ -51,22 +51,14 @@
51
51
  "socket.io": "4.7.2"
52
52
  },
53
53
  "devDependencies": {
54
- "@babel/cli": "7.23.0",
55
- "@babel/core": "7.23.3",
56
- "@babel/eslint-parser": "7.23.3",
57
- "@babel/node": "7.22.19",
58
- "@babel/plugin-transform-runtime": "7.23.3",
59
- "@babel/preset-env": "7.23.3",
60
- "@babel/preset-react": "7.23.3",
61
- "@babel/register": "7.22.15",
62
54
  "@types/lodash": "4.14.201",
63
55
  "@types/react": "18.2.37",
64
56
  "@types/react-dom": "18.2.15",
65
57
  "@types/webpack-env": "1.18.4",
66
58
  "@typescript-eslint/eslint-plugin": "6.11.0",
67
59
  "@typescript-eslint/parser": "6.11.0",
68
- "babel-loader": "9.1.3",
69
60
  "chai": "4.3.10",
61
+ "core-js": "3.33.3",
70
62
  "css-loader": "6.8.1",
71
63
  "eslint": "8.53.0",
72
64
  "eslint-plugin-mocha": "10.2.0",
@@ -76,7 +68,6 @@
76
68
  "normalize.css": "8.0.1",
77
69
  "react": "18.2.0",
78
70
  "react-dom": "18.2.0",
79
- "sinon": "17.0.1",
80
71
  "style-loader": "3.3.3",
81
72
  "ts-loader": "9.5.0",
82
73
  "typescript": "5.2.2",