diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-10-28 11:35:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 11:35:23 +0900 |
| commit | 6571c87e14a7faf00dfcbff0f17251801d52298b (patch) | |
| tree | 4bd6c2b96adce6bc4fad5a6f88dd0dc88b3b2dbd /packages | |
| parent | deps: update `@types/node` to v24 [ci skip] (#16718) (diff) | |
| download | misskey-6571c87e14a7faf00dfcbff0f17251801d52298b.tar.gz misskey-6571c87e14a7faf00dfcbff0f17251801d52298b.tar.bz2 misskey-6571c87e14a7faf00dfcbff0f17251801d52298b.zip | |
fix: attempt to fix test (#16719)
* fix(backend): attempt to fix test
* fix
* Revert "fix(backend): attempt to fix test"
This reverts commit 67dff577c9b23ad0b463b6741872f258170c1615.
* attempt to fix test
* Revert "fix"
This reverts commit cec3d2f5c6418a692cfa673e1e70752260c5d4ba.
* fix
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/misskey-bubble-game/package.json | 2 | ||||
| -rw-r--r-- | packages/misskey-js/package.json | 2 | ||||
| -rw-r--r-- | packages/misskey-reversi/package.json | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/packages/misskey-bubble-game/package.json b/packages/misskey-bubble-game/package.json index 934717571f..acf5254801 100644 --- a/packages/misskey-bubble-game/package.json +++ b/packages/misskey-bubble-game/package.json @@ -6,10 +6,12 @@ "types": "./built/index.d.ts", "exports": { ".": { + "default": "./built/index.js", "import": "./built/index.js", "types": "./built/index.d.ts" }, "./*": { + "default": "./built/*", "import": "./built/*", "types": "./built/*" } diff --git a/packages/misskey-js/package.json b/packages/misskey-js/package.json index acb9e0ea6e..5ac7e0b24a 100644 --- a/packages/misskey-js/package.json +++ b/packages/misskey-js/package.json @@ -8,10 +8,12 @@ "types": "./built/index.d.ts", "exports": { ".": { + "default": "./built/index.js", "import": "./built/index.js", "types": "./built/index.d.ts" }, "./*": { + "default": "./built/*", "import": "./built/*", "types": "./built/*" } diff --git a/packages/misskey-reversi/package.json b/packages/misskey-reversi/package.json index 6e4a770bb1..36827663b1 100644 --- a/packages/misskey-reversi/package.json +++ b/packages/misskey-reversi/package.json @@ -6,10 +6,12 @@ "types": "./built/index.d.ts", "exports": { ".": { + "default": "./built/index.js", "import": "./built/index.js", "types": "./built/index.d.ts" }, "./*": { + "default": "./built/*", "import": "./built/*", "types": "./built/*" } |