diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2026-01-05 20:56:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-05 20:56:52 +0900 |
| commit | 7bcfeba7e51309c0804a81ab291d81c6e0aefc98 (patch) | |
| tree | 6b41d09255b632266210e8cbc8adafa7e49899a1 /packages/backend/package.json | |
| parent | chore(deps): update [misskey-js] update dependencies [ci skip] (#17025) (diff) | |
| download | misskey-7bcfeba7e51309c0804a81ab291d81c6e0aefc98.tar.gz misskey-7bcfeba7e51309c0804a81ab291d81c6e0aefc98.tar.bz2 misskey-7bcfeba7e51309c0804a81ab291d81c6e0aefc98.zip | |
Minify backend (#17054)
* wip
* Update build.js
* Update build.js
* [minify-backend用] フィジビリティ検証 (#16878)
* fix: minify-backend
* 間違えて入れちゃったのを戻す
* 追従
* fix
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* test
* use node 24
* Revert "use node 24"
This reverts commit 7ae2debf23448922de70e208fe2e432ef4665f27.
* Revert "test"
This reverts commit d91987909139405318e573effe5a5d1613713934.
* Update package.json
* wip
* Update compile_config.js
* Revert "Update compile_config.js"
This reverts commit 0ee286f02be807b126b65de6d94f573c005f98d7.
* Update config.ts
* wip
* Update .swcrc
* Update ClientServerService.ts
* [ci skip] update CHANGELOG
---------
Co-authored-by: おさむのひと <46447427+samunohito@users.noreply.github.com>
Diffstat (limited to 'packages/backend/package.json')
| -rw-r--r-- | packages/backend/package.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/backend/package.json b/packages/backend/package.json index 181ba4d3ef..8bda4bd909 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -12,10 +12,10 @@ "start:test": "cross-env NODE_ENV=test pnpm compile-config && cross-env NODE_ENV=test node ./built/boot/entry.js", "migrate": "pnpm compile-config && pnpm typeorm migration:run -d ormconfig.js", "revert": "pnpm compile-config && pnpm typeorm migration:revert -d ormconfig.js", - "cli": "pnpm compile-config && node ./built/boot/cli.js", + "cli": "pnpm compile-config && node ./src-js/boot/cli.js", "check:connect": "pnpm compile-config && node ./scripts/check_connect.js", "compile-config": "node ./scripts/compile_config.js", - "build": "swc src -d built -D --strip-leading-paths", + "build": "swc src -d src-js -D --strip-leading-paths && node ./build.js", "build:test": "swc test-server -d built-test -D --config-file test-server/.swcrc --strip-leading-paths", "watch:swc": "swc src -d built -D -w --strip-leading-paths", "build:tsc": "tsgo -p tsconfig.json && tsc-alias -p tsconfig.json", @@ -219,6 +219,7 @@ "aws-sdk-client-mock": "4.1.0", "cbor": "10.0.11", "cross-env": "10.1.0", + "esbuild-plugin-swc": "1.0.1", "eslint-plugin-import": "2.32.0", "execa": "9.6.1", "fkill": "10.0.1", |