Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Commit 800bcf4

Browse files
committed
1.1.23
1 parent 4edf121 commit 800bcf4

4 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,11 @@ jobs:
1010
name: Release builds to npm
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
15-
- uses: pnpm/action-setup@v2
16-
with:
17-
version: 9
18-
run_install: false
19-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: pnpm/action-setup@v4
15+
- uses: actions/setup-node@v4
2016
with:
21-
node-version: 18
17+
node-version: 22
2218
cache: pnpm
2319
registry-url: https://registry.npmjs.org
2420

package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "@moonlight-mod/mappings",
3-
"version": "1.1.22",
3+
"version": "1.1.23",
44
"license": "MIT",
5+
"engineStrict": false,
6+
"engines": {
7+
"node": ">=22",
8+
"pnpm": ">=10",
9+
"npm": "pnpm",
10+
"yarn": "pnpm"
11+
},
512
"repository": {
613
"type": "git",
714
"url": "git+https://github.com/moonlight-mod/mappings.git"

src/mappings/discord/components/common/_indexNames.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export type IconNames =
2828
| "ScienceIcon"
2929
| "ScreenIcon"
3030
| "StarIcon"
31-
| "ThemeDarkIcon"
3231
| "TrashIcon"
3332
| "WarningIcon"
3433
| "WindowLaunchIcon"

src/mappings/discord/components/common/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1477,10 +1477,6 @@ register((moonmap) => {
14771477
type: ModuleExportType.Function,
14781478
find: "M6 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3a1"
14791479
});
1480-
moonmap.addExport(name, "ThemeDarkIcon", {
1481-
type: ModuleExportType.Function,
1482-
find: "m17.73 9.27-.76-2.02a.5.5 0 0 0-.94 0l-.76"
1483-
});
14841480
moonmap.addExport(name, "ScreenIcon", {
14851481
type: ModuleExportType.Function,
14861482
find: "M5 2a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h14a3"

0 commit comments

Comments
 (0)