We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
createStreaming
createStreaming takes forever when running example code from deno.land
import { createStreaming, GlobalConfiguration, } from "https://deno.land/x/dprint/mod.ts" const globalConfig: GlobalConfiguration = { indentWidth: 2, lineWidth: 80, } const tsFormatter = await createStreaming( // check https://plugins.dprint.dev/ for latest plugin versions fetch("https://plugins.dprint.dev/typescript-0.57.0.wasm"), ) tsFormatter.setConfig(globalConfig, { semiColons: "asi", }) // outputs: "const t = 5\n" console.log(tsFormatter.formatText("file.ts", "const t = 5;"))
deno --version deno 1.31.1 (release, x86_64-unknown-linux-gnu) v8 11.0.226.13 typescript 4.9.4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
createStreaming
takes forever when running example code from deno.landSystem version
The text was updated successfully, but these errors were encountered: