Skip to content

Commit

Permalink
Update packageManager version in package.json (#87)
Browse files Browse the repository at this point in the history
This pull request updates the packageManager version in the package.json file from "pnpm@8.14.1" to "pnpm@8.15.4". This update ensures that the project is using the latest version of the package manager.
  • Loading branch information
DarthGigi committed Feb 28, 2024
2 parents a24d971 + 38c7f51 commit 3c3115a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "minionah",
"version": "0.0.1",
"packageManager": "pnpm@8.14.1",
"packageManager": "pnpm@8.15.4",
"scripts": {
"dev": "dotenv -e .env.development -- vite dev",
"build": "vite build",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export const PUT: RequestHandler = async ({ fetch }) => {
}
});
const craftCosts = await response.json();
console.log(craftCosts);
minions.forEach((minion) => {
console.info(`Setting craft cost for ${minion.id}`);
minion.craftCost = craftCosts[minion.id];
Expand Down
1 change: 0 additions & 1 deletion src/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const firebase =
const messaging = getMessaging(firebase);
onBackgroundMessage(messaging, async (/** @type {import("firebase/messaging").MessagePayload} */ payload) => {
const notification = /** @type {import("firebase/messaging").NotificationPayload} */ (payload.notification);
console.log("Received background message ", payload);
const notificationTitle = notification?.title ?? "MinionAH";
const notificationOptions = /** @type {NotificationOptions} */ ({
body: notification?.body ?? "New message from MinionAH",
Expand Down

0 comments on commit 3c3115a

Please sign in to comment.