Skip to content

Commit ca561b4

Browse files
committed
Update deps.
GitOrigin-RevId: 709176536bc66f8d39405c8c9653723aeaeccbde
1 parent a808133 commit ca561b4

22 files changed

+669
-656
lines changed

ares/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@stripe/stripe-js": "^5.8.0",
3939
"cordova-plugin-purchase": "^13.12.1",
4040
"fbtee": "^0.2.0",
41-
"framer-motion": "^12.4.7",
41+
"framer-motion": "^12.4.10",
4242
"p-limit": "^6.2.0",
4343
"react": "19.0.0",
4444
"react-dom": "19.0.0",

artemis/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@deities/hermes": "workspace:*",
2020
"@deities/i18n": "workspace:*",
2121
"@deities/zeus": "workspace:*",
22-
"@graphql-tools/utils": "^10.8.3",
22+
"@graphql-tools/utils": "^10.8.4",
2323
"@nkzw/define-env": "^1.1.0",
2424
"@nkzw/histogram": "^1.1.0",
2525
"@nkzw/immutable-map": "^1.2.2",
@@ -31,7 +31,7 @@
3131
"@pothos/plugin-relay": "^4.4.0",
3232
"@prisma/client": "^6.4.1",
3333
"@quixo3/prisma-session-store": "^3.1.13",
34-
"@sentry/node": "^9.3.0",
34+
"@sentry/node": "^9.5.0",
3535
"@types/express-session": "^1.18.1",
3636
"@types/node-pushnotifications": "^1.0.8",
3737
"array-shuffle": "^3.0.0",
@@ -42,16 +42,16 @@
4242
"discord.js": "^14.18.0",
4343
"express": "^4.21.2",
4444
"express-session": "^1.18.1",
45-
"googleapis": "^144.0.0",
45+
"googleapis": "^146.0.0",
4646
"graphql": "^16.10.0",
4747
"graphql-helix": "^1.13.0",
48-
"ioredis": "^5.5.0",
48+
"ioredis": "^5.6.0",
4949
"json-stable-stringify": "^1.2.1",
5050
"node-pushnotifications": "^3.1.1",
5151
"openskill": "^4.1.0",
5252
"passport": "^0.7.0",
5353
"passport-local": "^1.0.0",
54-
"prettier": "4.0.0-alpha.10",
54+
"prettier": "4.0.0-alpha.12",
5555
"resend": "4.1.2",
5656
"socket.io": "^4.8.1",
5757
"strip-ansi": "^7.1.0",
@@ -63,7 +63,7 @@
6363
"@aws-sdk/client-sso-oidc": "^3.758.0",
6464
"@aws-sdk/client-sts": "^3.758.0",
6565
"@rollup/plugin-replace": "^6.0.2",
66-
"@sentry/vite-plugin": "^3.2.1",
66+
"@sentry/vite-plugin": "^3.2.2",
6767
"@types/body-parser": "^1.19.5",
6868
"@types/cors": "^2.8.17",
6969
"@types/express": "^5.0.0",

codegen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"@types/babel__traverse": "^7.20.6",
2121
"chalk": "^5.4.1",
2222
"glob": "11.0.1",
23-
"prettier": "4.0.0-alpha.10"
23+
"prettier": "4.0.0-alpha.12"
2424
}
2525
}

deimos/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@emotion/css": "^11.13.5",
2121
"array-shuffle": "^3.0.0",
2222
"fbtee": "^0.2.0",
23-
"framer-motion": "^12.4.7",
23+
"framer-motion": "^12.4.10",
2424
"react": "19.0.0",
2525
"react-dom": "19.0.0",
2626
"react-error-boundary": "^5.0.0"

docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"@types/react": "^19.0.10",
2828
"dunkel-theme": "^1.7.1",
2929
"fbtee": "^0.2.0",
30-
"framer-motion": "^12.4.7",
30+
"framer-motion": "^12.4.10",
3131
"licht-theme": "^1.7.1",
3232
"react": "19.0.0",
3333
"react-dom": "19.0.0",
34-
"vocs": "1.0.1"
34+
"vocs": "^1.0.5"
3535
}
3636
}

hera/campaign/CampaignEditor.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -597,9 +597,11 @@ export default function CampaignEditor({
597597
>
598598
{hasSaved ? (
599599
<fbt desc="Text after saving a campaign">
600-
Campaign &quot;<fbt:param name="campaignName">
600+
Campaign
601+
&quot;<fbt:param name="campaignName">
601602
{campaignName}
602-
</fbt:param>&quot; was saved.
603+
</fbt:param>&quot;
604+
was saved.
603605
</fbt>
604606
) : (
605607
<ErrorText>

hera/card/LeaderCard.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ export default memo(function LeaderCard({
7474
Leader units receive a{' '}
7575
<fbt:param name="buff">
7676
{LeaderStatusEffect * 100}
77-
</fbt:param>% attack and defense bonus.
77+
</fbt:param>%
78+
attack and defense bonus.
7879
</fbt>
7980
</div>
8081
</Stack>

hera/editor/MapEditor.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,8 @@ export default function MapEditor({
11741174
>
11751175
{hasSaved ? (
11761176
<fbt desc="Text after saving a map">
1177-
Map &quot;<fbt:param name="mapName">{mapName}</fbt:param>&quot;
1177+
Map
1178+
&quot;<fbt:param name="mapName">{mapName}</fbt:param>&quot;
11781179
was saved.
11791180
</fbt>
11801181
) : (

hera/editor/lib/ObjectiveCard.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ export default function ObjectiveCard({
102102
/>
103103
<fbt:plural count={campaigns.length} many="campaigns">
104104
campaign
105-
</fbt:plural>. If you want to delete the objective, you must first
106-
change the campaign objectives to no longer require this objective.
105+
</fbt:plural>.
106+
If you want to delete the objective, you must first change the
107+
campaign objectives to no longer require this objective.
107108
</fbt>
108109
),
109110
title: (

hera/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@nkzw/use-relative-time": "^1.1.0",
2525
"array-shuffle": "^3.0.0",
2626
"fbtee": "^0.2.0",
27-
"framer-motion": "^12.4.7",
27+
"framer-motion": "^12.4.10",
2828
"react": "19.0.0",
2929
"react-dom": "19.0.0",
3030
"react-fps": "^1.0.6"

hera/ui/Banner.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ noise.src = Sprites.Noise;
272272

273273
const backgroundStyle = css`
274274
inset: -720px;
275-
mask-image: url('${Sprites.Noise}'),
275+
mask-image:
276+
url('${Sprites.Noise}'),
276277
linear-gradient(
277278
to bottom right,
278279
rgba(0, 0, 0, 0.7) 0%,

hera/ui/CharacterMessage.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,8 @@ const messageStyle = css`
379379

380380
const backgroundStyle = css`
381381
inset: 0;
382-
mask-image: url('${Sprites.Noise}'),
382+
mask-image:
383+
url('${Sprites.Noise}'),
383384
linear-gradient(
384385
to bottom right,
385386
rgba(0, 0, 0, 0.9) 0%,

hera/ui/GameDialog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,8 @@ const GamePlayerEffectDialog = ({
828828
name="number of charges"
829829
>
830830
charge
831-
</fbt:plural>. Your charge bar fills up through attacks during
832-
battle.
831+
</fbt:plural>.
832+
Your charge bar fills up through attacks during battle.
833833
</fbt>
834834
</p>
835835
</InfoBox>

hera/ui/Message.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,8 @@ const innerStyle = css`
245245
const backgroundStyle = css`
246246
bottom: 0;
247247
left: 0;
248-
mask-image: url('${Sprites.Noise}'),
248+
mask-image:
249+
url('${Sprites.Noise}'),
249250
linear-gradient(
250251
to bottom right,
251252
rgba(0, 0, 0, 0.9) 0%,

hera/ui/ModeSelectButton.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,8 @@ const style = css`
142142
content: '';
143143
height: 0;
144144
left: 50%;
145-
mask-image: url('${Sprites.Noise}'),
145+
mask-image:
146+
url('${Sprites.Noise}'),
146147
linear-gradient(
147148
to bottom right,
148149
rgba(0, 0, 0, 0.7) 0%,

hera/ui/SkillDescription.tsx

+11-10
Original file line numberDiff line numberDiff line change
@@ -636,10 +636,9 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
636636
Counter attacks are{' '}
637637
<fbt:param name="raisedCounterAttack">
638638
{RaisedCounterAttack * 100}
639-
</fbt:param>% as effective as initial attacks instead of
640-
<fbt:param name="counterAttack">
641-
{CounterAttack * 100}
642-
</fbt:param>%.
639+
</fbt:param>%
640+
as effective as initial attacks instead of
641+
<fbt:param name="counterAttack">{CounterAttack * 100}</fbt:param>%.
643642
</fbt>
644643
);
645644
case Skill.UnlockZombie:
@@ -660,7 +659,8 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
660659
building provides an extra{' '}
661660
<fbt:param name="value">
662661
{PowerStationSkillMultiplier * 100}
663-
</fbt:param>% funds increase.
662+
</fbt:param>%
663+
funds increase.
664664
</fbt>
665665
);
666666
case Skill.VampireHeal:
@@ -672,9 +672,8 @@ const getExtraDescription = (skill: Skill, color: BaseColor) => {
672672
/>
673673
</fbt:param>{' '}
674674
units heal
675-
<fbt:param name="value">
676-
{VampireSkillHeal}
677-
</fbt:param> health points at the beginning of their turn.
675+
<fbt:param name="value">{VampireSkillHeal}</fbt:param> health points
676+
at the beginning of their turn.
678677
</fbt>
679678
);
680679
case Skill.Shield:
@@ -837,7 +836,8 @@ const getExtraPowerDescription = (skill: Skill, color: BaseColor) => {
837836
into{' '}
838837
<fbt:param name="toUnitName">
839838
<UnitName color={color} unit={InfernoJetpack} />
840-
</fbt:param>. Spawns 3{' '}
839+
</fbt:param>.
840+
Spawns 3{' '}
841841
<fbt:param name="unitNameB">
842842
<UnitName color={color} unit={InfernoJetpack} />
843843
</fbt:param>.
@@ -919,7 +919,8 @@ const getExtraPowerDescription = (skill: Skill, color: BaseColor) => {
919919
Attacks are increased by{' '}
920920
<fbt:param name="percentage">
921921
{ChargeSkillChargeMultiplier * 100}
922-
</fbt:param>% for each available charge.
922+
</fbt:param>%
923+
for each available charge.
923924
</fbt>
924925
);
925926
case Skill.DragonSaboteur:

hera/ui/SkillDialog.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ const hoverStyle = css`
162162
const backgroundStyle = css`
163163
image-rendering: pixelated;
164164
inset: 0;
165-
mask-image: url('${Sprites.Noise}'),
165+
mask-image:
166+
url('${Sprites.Noise}'),
166167
linear-gradient(
167168
to bottom right,
168169
rgba(0, 0, 0, 0.7) 0%,
@@ -692,8 +693,8 @@ const DisabledSkillDialog = ({ onClose }: { onClose: () => void }) => {
692693
with the{' '}
693694
<fbt:param name="crystalName">
694695
{getTranslatedCrystalName(Crystal.Power)}
695-
</fbt:param>. They currently have fewer unlocked skill slots
696-
than you.
696+
</fbt:param>.
697+
They currently have fewer unlocked skill slots than you.
697698
</fbt>
698699
</p>
699700
</InfoBox>

package.json

+5-15
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
"@nkzw/eslint-config": "^2.0.0",
6464
"@nkzw/eslint-plugin-fbtee": "^0.2.1",
6565
"@styled/typescript-styled-plugin": "^1.0.1",
66-
"@swc/core": "^1.11.5",
67-
"@types/node": "^22.13.8",
66+
"@swc/core": "^1.11.7",
67+
"@types/node": "^22.13.9",
6868
"@vitejs/plugin-react": "^4.3.4",
6969
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
7070
"chalk": "^5.4.1",
@@ -74,13 +74,13 @@
7474
"eslint-plugin-workspaces": "^0.10.1",
7575
"nodemon": "^3.1.9",
7676
"npm-run-all2": "^7.0.2",
77-
"prettier": "4.0.0-alpha.10",
78-
"prettier-plugin-packagejson": "^2.5.9",
77+
"prettier": "4.0.0-alpha.12",
78+
"prettier-plugin-packagejson": "^2.5.10",
7979
"react-refresh": "^0.16.0",
8080
"ts-node": "^10.9.2",
8181
"typescript": "^5.8.2",
8282
"vite": "^6.2.0",
83-
"vitest": "^3.0.7"
83+
"vitest": "^3.0.8"
8484
},
8585
"engines": {
8686
"node": ">=20.0.0",
@@ -101,16 +101,6 @@
101101
"overrides": {
102102
"react@^18.0.0": "19.0.0-rc.1",
103103
"rollup@^2.0.0": "^4.16.4"
104-
},
105-
"patchedDependencies": {
106-
"cordova-plugin-purchase": "patches/cordova-plugin-purchase.patch",
107-
"eslint-plugin-import": "patches/eslint-plugin-import.patch",
108-
"graphql-helix@1.13.0": "patches/graphql-helix@1.13.0.patch",
109-
"howler@2.2.4": "patches/howler@2.2.4.patch",
110-
"jest-image-snapshot": "patches/jest-image-snapshot.patch",
111-
"require-in-the-middle": "patches/require-in-the-middle.patch",
112-
"resend": "patches/resend.patch",
113-
"typescript": "patches/typescript.patch"
114104
}
115105
}
116106
}

0 commit comments

Comments
 (0)