Skip to content

Commit

Permalink
📦 Upgrade devDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofugaro committed Nov 21, 2023
1 parent 40b43b7 commit 293f423
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 100 deletions.
4 changes: 2 additions & 2 deletions esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { glslify } from 'esbuild-plugin-glslify'
import { glslifyInline } from 'esbuild-plugin-glslify-inline'
import browserSync from 'browser-sync'
import openBrowser from 'react-dev-utils/openBrowser.js'
import address from 'address'
import { ip } from 'address'
import { devLogger, prodLogger } from './logging-utils.js'

const HTTPS = process.argv.includes('--https')
Expand All @@ -31,7 +31,7 @@ if (isDevelopment) {

const urlOptions = server.instance.utils.getUrlOptions(server.instance.options)
local = urlOptions.get('local')
external = `${HTTPS ? 'https' : 'http'}://${address.ip()}:${PORT}`
external = `${HTTPS ? 'https' : 'http'}://${ip()}:${PORT}`
}

const result = await esbuild
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@
"three": "0.158.0"
},
"devDependencies": {
"address": "^1.2.2",
"address": "^2.0.1",
"browser-sync": "^2.29.3",
"chalk": "4.1.2",
"cpr": "^3.0.1",
"cross-env": "^7.0.3",
"esbuild": "0.16.17",
"esbuild-plugin-glslify": "^1.0.1",
"esbuild-plugin-glslify-inline": "^1.1.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"glslify": "^7.1.1",
"indent-string": "^5.0.0",
"ora": "^6.3.1",
"ora": "^7.0.1",
"react-dev-utils": "^12.0.1",
"rimraf": "^5.0.1",
"rimraf": "^5.0.5",
"tree-node-cli": "^1.6.0"
}
}
Loading

0 comments on commit 293f423

Please sign in to comment.