nodestatus-server 1.2.4-beta → 1.2.5-beta
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/build/app.js +88450 -1348
- package/build/dist/hotaru-admin/assets/LayoutHandler.e276d20c.js +61 -0
- package/build/dist/hotaru-admin/assets/{Login.cddd19f0.js → Login.1e56d0ea.js} +1 -1
- package/build/dist/hotaru-admin/assets/{index.eba21208.js → index.71c368a8.js} +1 -1
- package/build/dist/hotaru-admin/index.html +1 -1
- package/build/dist/hotaru-theme/assets/{index.1d664531.js → index.54c6e9ed.js} +1 -1
- package/build/dist/hotaru-theme/index.html +1 -1
- package/package.json +7 -7
- package/build/dist/hotaru-admin/assets/LayoutHandler.abe611c2.js +0 -61
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<link rel="icon" href="/favicon.ico" />
|
|
7
7
|
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/semantic-ui/dist/semantic.min.css">
|
|
8
8
|
<title>NodeStatus</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index.
|
|
9
|
+
<script type="module" crossorigin src="/assets/index.54c6e9ed.js"></script>
|
|
10
10
|
<link rel="modulepreload" href="/assets/vendor.42741a4c.js">
|
|
11
11
|
<link rel="stylesheet" href="/assets/index.377aecc7.css">
|
|
12
12
|
</head>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodestatus-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5-beta",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/cokemine/nodestatus.git",
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"@prisma/client": "3.11.1",
|
|
24
24
|
"dotenv": "^16.0.0",
|
|
25
25
|
"readable-stream": "^3.6.0",
|
|
26
|
-
"replace-in-file": "^6.3.2"
|
|
27
|
-
"telegraf": "^4.4.2"
|
|
26
|
+
"replace-in-file": "^6.3.2"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
29
|
"@koa/router": "^10.1.1",
|
|
@@ -57,6 +56,7 @@
|
|
|
57
56
|
"log4js": "^6.3.0",
|
|
58
57
|
"pm2": "^5.1.2",
|
|
59
58
|
"prisma": "3.11.1",
|
|
59
|
+
"telegraf": "^4.7.0",
|
|
60
60
|
"typescript": "^4.4.4",
|
|
61
61
|
"vite": "^2.6.13",
|
|
62
62
|
"ws": "^8.4.2"
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"utf-8-validate": "^5.0.7"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
|
+
"build": "rollup -c",
|
|
70
|
+
"dev": "cross-env NODE_ENV=development rollup -c --watch",
|
|
69
71
|
"postinstall": "node scripts/init.js",
|
|
72
|
+
"lint": "eslint . --ext .js --ext .ts --ignore-pattern build --ignore-pattern dist --fix",
|
|
70
73
|
"prestart": "node scripts/init.js",
|
|
71
|
-
"pretest": "node scripts/init.js",
|
|
72
74
|
"start": "node build/app.js",
|
|
73
|
-
"
|
|
74
|
-
"build": "rollup -c",
|
|
75
|
-
"lint": "eslint . --ext .js --ext .ts --ignore-pattern build --ignore-pattern dist --fix"
|
|
75
|
+
"pretest": "node scripts/init.js"
|
|
76
76
|
},
|
|
77
77
|
"readme": "# NodeStatus-Server\n\n> NodeStatus main package.\n\n See https://github.com/cokemine/nodestatus for more information.\n\n\n\n"
|
|
78
78
|
}
|