refactor(oxfmt): Clean up src-js files and directories#17040
Merged
graphite-app[bot] merged 1 commit intomainfrom Dec 18, 2025
Merged
refactor(oxfmt): Clean up src-js files and directories#17040graphite-app[bot] merged 1 commit intomainfrom
src-js files and directories#17040graphite-app[bot] merged 1 commit intomainfrom
Conversation
Member
Author
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
src-js files and directories
e0860a2 to
cc67747
Compare
cc67747 to
4db40e7
Compare
f1d776c to
2bfd2b2
Compare
This was referenced Dec 18, 2025
4db40e7 to
84aac2a
Compare
Dunqing
approved these changes
Dec 18, 2025
Contributor
Merge activity
|
2bfd2b2 to
049fb57
Compare
graphite-app bot
pushed a commit
that referenced
this pull request
Dec 18, 2025
```
.
├── bindings.d.ts
├── bindings.js
├── cli
│ ├── migration
│ │ ├── init.ts
│ │ ├── migrate-prettier.ts
│ │ └── shared.ts
│ └── worker-proxy.ts
├── cli-worker.ts # CLI worker endpoint
├── cli.ts # CLI endpoint
├── index.ts # API endpoint
└── libs
└── prettier.ts # Core logic shared by index, cli-worker, cli/worker-proxy
```
By doing this, Node.js API `format()` does not use `worker_threads` anymore.
84aac2a to
d20911c
Compare
```
.
├── bindings.d.ts
├── bindings.js
├── cli
│ ├── migration
│ │ ├── init.ts
│ │ ├── migrate-prettier.ts
│ │ └── shared.ts
│ └── worker-proxy.ts
├── cli-worker.ts # CLI worker endpoint
├── cli.ts # CLI endpoint
├── index.ts # API endpoint
└── libs
└── prettier.ts # Core logic shared by index, cli-worker, cli/worker-proxy
```
By doing this, Node.js API `format()` does not use `worker_threads` anymore.
049fb57 to
d340c87
Compare
d20911c to
b4e8605
Compare
Base automatically changed from
12-18-fix_oxfmt_accept_additional_api_options
to
main
December 18, 2025 10:52
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

By doing this, Node.js API
format()does not useworker_threadsanymore.