Commit 6a6e3ce7 authored by Alejandro Celaya's avatar Alejandro Celaya Committed by Alejandro Celaya

Update dev express server to v5

parent 0340a9f1
...@@ -144,7 +144,7 @@ export function serveDev(port, config) { ...@@ -144,7 +144,7 @@ export function serveDev(port, config) {
// The optional suffix allows the same PDF to be accessed at different URLs. // The optional suffix allows the same PDF to be accessed at different URLs.
// This is helpful for testing that annotations/real-time updates etc. work // This is helpful for testing that annotations/real-time updates etc. work
// based on the document fingerprint as well as the URL. // based on the document fingerprint as well as the URL.
app.get('/pdf/:pdf/:suffix?', (req, res, next) => { app.get('/pdf/:pdf{/:suffix}', (req, res, next) => {
const pdfPath = `${PDF_PATH}${req.params.pdf}.pdf`; const pdfPath = `${PDF_PATH}${req.params.pdf}.pdf`;
if (fs.existsSync(pdfPath)) { if (fs.existsSync(pdfPath)) {
...@@ -175,7 +175,7 @@ export function serveDev(port, config) { ...@@ -175,7 +175,7 @@ export function serveDev(port, config) {
}); });
// Serve UI component playground // Serve UI component playground
app.get('/ui-playground/:path?', (req, res) => { app.get('/ui-playground{/:path}', (req, res) => {
res.render('ui-playground', { res.render('ui-playground', {
resourceRoot: resourceRoot:
'http://localhost:3001/hypothesis/1.0.0-dummy-version/build', 'http://localhost:3001/hypothesis/1.0.0-dummy-version/build',
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
"eslint-plugin-mocha": "^10.0.1", "eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-react": "^7.12.4", "eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.0.4", "eslint-plugin-react-hooks": "^4.0.4",
"express": "^4.14.1", "express": "^5.0.1",
"fancy-log": "^2.0.0", "fancy-log": "^2.0.0",
"fetch-mock": "11", "fetch-mock": "11",
"focus-visible": "^5.0.0", "focus-visible": "^5.0.0",
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
"lodash.debounce": "^4.0.3", "lodash.debounce": "^4.0.3",
"mocha": "10.7.3", "mocha": "10.7.3",
"mustache": "^4.0.1", "mustache": "^4.0.1",
"mustache-express": "^1.3.0", "mustache-express": "^1.3.2",
"npm-packlist": "^9.0.0", "npm-packlist": "^9.0.0",
"postcss": "^8.0.3", "postcss": "^8.0.3",
"preact": "^10.4.0", "preact": "^10.4.0",
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment