enh: update to parcel2 (#237)
This commit is contained in:
parent
ef3d37db00
commit
97ef92ff92
12
.gitignore
vendored
12
.gitignore
vendored
@ -1,8 +1,16 @@
|
|||||||
|
# npm
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
|
# minetrack
|
||||||
minetrack.log
|
minetrack.log
|
||||||
.idea/
|
|
||||||
|
# minetrack/sqlite3
|
||||||
database.sql
|
database.sql
|
||||||
database.sql-journal
|
database.sql-journal
|
||||||
|
|
||||||
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# parcel
|
||||||
dist/
|
dist/
|
||||||
.cache/
|
.parcel-cache/
|
||||||
|
@ -5,7 +5,7 @@ import { RelativeScale } from './scale'
|
|||||||
import { formatNumber, formatTimestampSeconds, formatDate, formatMinecraftServerAddress, formatMinecraftVersions } from './util'
|
import { formatNumber, formatTimestampSeconds, formatDate, formatMinecraftServerAddress, formatMinecraftVersions } from './util'
|
||||||
import { uPlotTooltipPlugin } from './plugins'
|
import { uPlotTooltipPlugin } from './plugins'
|
||||||
|
|
||||||
import MISSING_FAVICON from '../images/missing_favicon.svg'
|
import MISSING_FAVICON from 'url:../images/missing_favicon.svg'
|
||||||
|
|
||||||
export class ServerRegistry {
|
export class ServerRegistry {
|
||||||
constructor (app) {
|
constructor (app) {
|
||||||
|
@ -27,7 +27,7 @@ class Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
createHttpServer () {
|
createHttpServer () {
|
||||||
const distServeStatic = serveStatic('dist/')
|
const distServeStatic = serveStatic('dist/html/')
|
||||||
const faviconsServeStatic = serveStatic('favicons/')
|
const faviconsServeStatic = serveStatic('favicons/')
|
||||||
|
|
||||||
this._http = http.createServer((req, res) => {
|
this._http = http.createServer((req, res) => {
|
||||||
|
24409
package-lock.json
generated
24409
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -2,14 +2,13 @@
|
|||||||
"name": "minetrack",
|
"name": "minetrack",
|
||||||
"version": "5.5.8",
|
"version": "5.5.8",
|
||||||
"description": "A Minecraft server tracker that lets you focus on the basics.",
|
"description": "A Minecraft server tracker that lets you focus on the basics.",
|
||||||
"main": "main.js",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"finalhandler": "^1.1.2",
|
"finalhandler": "^1.1.2",
|
||||||
"mcpe-ping-fixed": "0.0.3",
|
"mcpe-ping-fixed": "0.0.3",
|
||||||
"mcping-js": "^1.4.1",
|
"mcping-js": "^1.4.1",
|
||||||
"request": "2.88.2",
|
"request": "2.88.2",
|
||||||
"serve-static": "^1.14.1",
|
"serve-static": "^1.14.1",
|
||||||
"sqlite3": "4.2.0",
|
"sqlite3": "^5.0.2",
|
||||||
"uplot": "1.0.11",
|
"uplot": "1.0.11",
|
||||||
"winston": "^2.4.4",
|
"winston": "^2.4.4",
|
||||||
"ws": "^7.3.0"
|
"ws": "^7.3.0"
|
||||||
@ -35,16 +34,15 @@
|
|||||||
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
||||||
"babel-eslint": "^10.1.0",
|
"babel-eslint": "^10.1.0",
|
||||||
"eslint": "^7.2.0",
|
"eslint": "^7.2.0",
|
||||||
"eslint-config-standard": "^14.1.1",
|
"eslint-config-standard": "^16.0.2",
|
||||||
"eslint-plugin-import": "^2.21.1",
|
"eslint-plugin-import": "^2.21.1",
|
||||||
"eslint-plugin-node": "^11.1.0",
|
"eslint-plugin-node": "^11.1.0",
|
||||||
"eslint-plugin-promise": "^4.2.1",
|
"eslint-plugin-promise": "^4.2.1",
|
||||||
"eslint-plugin-standard": "^4.0.1",
|
"parcel": "^2.0.0-beta.2"
|
||||||
"parcel-bundler": "^1.12.4"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "eslint assets/js/*.js && parcel build assets/html/index.html",
|
"build": "eslint assets/js/*.js && parcel build assets/html/index.html --dist-dir dist",
|
||||||
"dev": "parcel build assets/html/index.html --no-minify"
|
"dev": "parcel build assets/html/index.html --no-optimize --dist-dir dist"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"bufferutil": "^4.0.1",
|
"bufferutil": "^4.0.1",
|
||||||
|
Loading…
Reference in New Issue
Block a user