Skip to content

Commit

Permalink
Improve logging for patch import map
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Nov 10, 2024
1 parent 5676365 commit 2420f75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/web-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ app.patch("/import-map.json", (req, res) => {
integrity: req.body.integrity,
})
.then((newImportMap) => {
console.log(`Patched import map. New import map`, newImportMap);
res.status(200).send(newImportMap);
})
.catch((err) => {
Expand Down

0 comments on commit 2420f75

Please sign in to comment.