Skip to content

Commit

Permalink
Update deps.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 709176536bc66f8d39405c8c9653723aeaeccbde
  • Loading branch information
cpojer committed Mar 7, 2025
1 parent a808133 commit ca561b4
Show file tree
Hide file tree
Showing 22 changed files with 669 additions and 656 deletions.
2 changes: 1 addition & 1 deletion ares/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@stripe/stripe-js": "^5.8.0",
"cordova-plugin-purchase": "^13.12.1",
"fbtee": "^0.2.0",
"framer-motion": "^12.4.7",
"framer-motion": "^12.4.10",
"p-limit": "^6.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
Expand Down
12 changes: 6 additions & 6 deletions artemis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@deities/hermes": "workspace:*",
"@deities/i18n": "workspace:*",
"@deities/zeus": "workspace:*",
"@graphql-tools/utils": "^10.8.3",
"@graphql-tools/utils": "^10.8.4",
"@nkzw/define-env": "^1.1.0",
"@nkzw/histogram": "^1.1.0",
"@nkzw/immutable-map": "^1.2.2",
Expand All @@ -31,7 +31,7 @@
"@pothos/plugin-relay": "^4.4.0",
"@prisma/client": "^6.4.1",
"@quixo3/prisma-session-store": "^3.1.13",
"@sentry/node": "^9.3.0",
"@sentry/node": "^9.5.0",
"@types/express-session": "^1.18.1",
"@types/node-pushnotifications": "^1.0.8",
"array-shuffle": "^3.0.0",
Expand All @@ -42,16 +42,16 @@
"discord.js": "^14.18.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"googleapis": "^144.0.0",
"googleapis": "^146.0.0",
"graphql": "^16.10.0",
"graphql-helix": "^1.13.0",
"ioredis": "^5.5.0",
"ioredis": "^5.6.0",
"json-stable-stringify": "^1.2.1",
"node-pushnotifications": "^3.1.1",
"openskill": "^4.1.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"prettier": "4.0.0-alpha.10",
"prettier": "4.0.0-alpha.12",
"resend": "4.1.2",
"socket.io": "^4.8.1",
"strip-ansi": "^7.1.0",
Expand All @@ -63,7 +63,7 @@
"@aws-sdk/client-sso-oidc": "^3.758.0",
"@aws-sdk/client-sts": "^3.758.0",
"@rollup/plugin-replace": "^6.0.2",
"@sentry/vite-plugin": "^3.2.1",
"@sentry/vite-plugin": "^3.2.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"@types/babel__traverse": "^7.20.6",
"chalk": "^5.4.1",
"glob": "11.0.1",
"prettier": "4.0.0-alpha.10"
"prettier": "4.0.0-alpha.12"
}
}
2 changes: 1 addition & 1 deletion deimos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@emotion/css": "^11.13.5",
"array-shuffle": "^3.0.0",
"fbtee": "^0.2.0",
"framer-motion": "^12.4.7",
"framer-motion": "^12.4.10",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-error-boundary": "^5.0.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"@types/react": "^19.0.10",
"dunkel-theme": "^1.7.1",
"fbtee": "^0.2.0",
"framer-motion": "^12.4.7",
"framer-motion": "^12.4.10",
"licht-theme": "^1.7.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"vocs": "1.0.1"
"vocs": "^1.0.5"
}
}
6 changes: 4 additions & 2 deletions hera/campaign/CampaignEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,11 @@ export default function CampaignEditor({
>
{hasSaved ? (
<fbt desc="Text after saving a campaign">
Campaign &quot;<fbt:param name="campaignName">
Campaign
&quot;<fbt:param name="campaignName">
{campaignName}
</fbt:param>&quot; was saved.
</fbt:param>&quot;
was saved.
</fbt>
) : (
<ErrorText>
Expand Down
3 changes: 2 additions & 1 deletion hera/card/LeaderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ export default memo(function LeaderCard({
Leader units receive a{' '}
<fbt:param name="buff">
{LeaderStatusEffect * 100}
</fbt:param>% attack and defense bonus.
</fbt:param>%
attack and defense bonus.
</fbt>
</div>
</Stack>
Expand Down
3 changes: 2 additions & 1 deletion hera/editor/MapEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,8 @@ export default function MapEditor({
>
{hasSaved ? (
<fbt desc="Text after saving a map">
Map &quot;<fbt:param name="mapName">{mapName}</fbt:param>&quot;
Map
&quot;<fbt:param name="mapName">{mapName}</fbt:param>&quot;
was saved.
</fbt>
) : (
Expand Down
5 changes: 3 additions & 2 deletions hera/editor/lib/ObjectiveCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ export default function ObjectiveCard({
/>
<fbt:plural count={campaigns.length} many="campaigns">
campaign
</fbt:plural>. If you want to delete the objective, you must first
change the campaign objectives to no longer require this objective.
</fbt:plural>.
If you want to delete the objective, you must first change the
campaign objectives to no longer require this objective.
</fbt>
),
title: (
Expand Down
2 changes: 1 addition & 1 deletion hera/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@nkzw/use-relative-time": "^1.1.0",
"array-shuffle": "^3.0.0",
"fbtee": "^0.2.0",
"framer-motion": "^12.4.7",
"framer-motion": "^12.4.10",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-fps": "^1.0.6"
Expand Down
3 changes: 2 additions & 1 deletion hera/ui/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,8 @@ noise.src = Sprites.Noise;

const backgroundStyle = css`
inset: -720px;
mask-image: url('${Sprites.Noise}'),
mask-image:
url('${Sprites.Noise}'),
linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.7) 0%,
Expand Down
3 changes: 2 additions & 1 deletion hera/ui/CharacterMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ const messageStyle = css`

const backgroundStyle = css`
inset: 0;
mask-image: url('${Sprites.Noise}'),
mask-image:
url('${Sprites.Noise}'),
linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.9) 0%,
Expand Down
4 changes: 2 additions & 2 deletions hera/ui/GameDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -828,8 +828,8 @@ const GamePlayerEffectDialog = ({
name="number of charges"
>
charge
</fbt:plural>. Your charge bar fills up through attacks during
battle.
</fbt:plural>.
Your charge bar fills up through attacks during battle.
</fbt>
</p>
</InfoBox>
Expand Down
3 changes: 2 additions & 1 deletion hera/ui/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ const innerStyle = css`
const backgroundStyle = css`
bottom: 0;
left: 0;
mask-image: url('${Sprites.Noise}'),
mask-image:
url('${Sprites.Noise}'),
linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.9) 0%,
Expand Down
3 changes: 2 additions & 1 deletion hera/ui/ModeSelectButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ const style = css`
content: '';
height: 0;
left: 50%;
mask-image: url('${Sprites.Noise}'),
mask-image:
url('${Sprites.Noise}'),
linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.7) 0%,
Expand Down
21 changes: 11 additions & 10 deletions hera/ui/SkillDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -636,10 +636,9 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
Counter attacks are{' '}
<fbt:param name="raisedCounterAttack">
{RaisedCounterAttack * 100}
</fbt:param>% as effective as initial attacks instead of
<fbt:param name="counterAttack">
{CounterAttack * 100}
</fbt:param>%.
</fbt:param>%
as effective as initial attacks instead of
<fbt:param name="counterAttack">{CounterAttack * 100}</fbt:param>%.
</fbt>
);
case Skill.UnlockZombie:
Expand All @@ -660,7 +659,8 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
building provides an extra{' '}
<fbt:param name="value">
{PowerStationSkillMultiplier * 100}
</fbt:param>% funds increase.
</fbt:param>%
funds increase.
</fbt>
);
case Skill.VampireHeal:
Expand All @@ -672,9 +672,8 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
/>
</fbt:param>{' '}
units heal
<fbt:param name="value">
{VampireSkillHeal}
</fbt:param> health points at the beginning of their turn.
<fbt:param name="value">{VampireSkillHeal}</fbt:param> health points
at the beginning of their turn.
</fbt>
);
case Skill.Shield:
Expand Down Expand Up @@ -837,7 +836,8 @@ const getExtraPowerDescription = (skill: Skill, color: BaseColor) => {
into{' '}
<fbt:param name="toUnitName">
<UnitName color={color} unit={InfernoJetpack} />
</fbt:param>. Spawns 3{' '}
</fbt:param>.
Spawns 3{' '}
<fbt:param name="unitNameB">
<UnitName color={color} unit={InfernoJetpack} />
</fbt:param>.
Expand Down Expand Up @@ -919,7 +919,8 @@ const getExtraPowerDescription = (skill: Skill, color: BaseColor) => {
Attacks are increased by{' '}
<fbt:param name="percentage">
{ChargeSkillChargeMultiplier * 100}
</fbt:param>% for each available charge.
</fbt:param>%
for each available charge.
</fbt>
);
case Skill.DragonSaboteur:
Expand Down
7 changes: 4 additions & 3 deletions hera/ui/SkillDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ const hoverStyle = css`
const backgroundStyle = css`
image-rendering: pixelated;
inset: 0;
mask-image: url('${Sprites.Noise}'),
mask-image:
url('${Sprites.Noise}'),
linear-gradient(
to bottom right,
rgba(0, 0, 0, 0.7) 0%,
Expand Down Expand Up @@ -692,8 +693,8 @@ const DisabledSkillDialog = ({ onClose }: { onClose: () => void }) => {
with the{' '}
<fbt:param name="crystalName">
{getTranslatedCrystalName(Crystal.Power)}
</fbt:param>. They currently have fewer unlocked skill slots
than you.
</fbt:param>.
They currently have fewer unlocked skill slots than you.
</fbt>
</p>
</InfoBox>
Expand Down
20 changes: 5 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"@nkzw/eslint-config": "^2.0.0",
"@nkzw/eslint-plugin-fbtee": "^0.2.1",
"@styled/typescript-styled-plugin": "^1.0.1",
"@swc/core": "^1.11.5",
"@types/node": "^22.13.8",
"@swc/core": "^1.11.7",
"@types/node": "^22.13.9",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"chalk": "^5.4.1",
Expand All @@ -74,13 +74,13 @@
"eslint-plugin-workspaces": "^0.10.1",
"nodemon": "^3.1.9",
"npm-run-all2": "^7.0.2",
"prettier": "4.0.0-alpha.10",
"prettier-plugin-packagejson": "^2.5.9",
"prettier": "4.0.0-alpha.12",
"prettier-plugin-packagejson": "^2.5.10",
"react-refresh": "^0.16.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vitest": "^3.0.7"
"vitest": "^3.0.8"
},
"engines": {
"node": ">=20.0.0",
Expand All @@ -101,16 +101,6 @@
"overrides": {
"react@^18.0.0": "19.0.0-rc.1",
"rollup@^2.0.0": "^4.16.4"
},
"patchedDependencies": {
"cordova-plugin-purchase": "patches/cordova-plugin-purchase.patch",
"eslint-plugin-import": "patches/eslint-plugin-import.patch",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"jest-image-snapshot": "patches/jest-image-snapshot.patch",
"require-in-the-middle": "patches/require-in-the-middle.patch",
"resend": "patches/resend.patch",
"typescript": "patches/typescript.patch"
}
}
}
Loading

0 comments on commit ca561b4

Please sign in to comment.