Skip to content

Commit

Permalink
style(wasm): re-order imports (#7864)
Browse files Browse the repository at this point in the history
  • Loading branch information
overlookmotel committed Dec 14, 2024
1 parent 8cf9766 commit 3542b4f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions crates/oxc_wasm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
mod options;

use std::{
cell::{Cell, RefCell},
path::{Path, PathBuf},
rc::Rc,
sync::Arc,
};

use serde::Serialize;
use tsify::Tsify;
use wasm_bindgen::prelude::*;

use oxc::{
allocator::Allocator,
ast::{ast::Program, Comment as OxcComment, CommentKind, Visit},
Expand All @@ -23,12 +25,11 @@ use oxc::{
use oxc_index::Idx;
use oxc_linter::{Linter, ModuleRecord};
use oxc_prettier::{Prettier, PrettierOptions};
use serde::Serialize;
use tsify::Tsify;
use wasm_bindgen::prelude::*;

use crate::options::{OxcOptions, OxcRunOptions};

mod options;

#[wasm_bindgen::prelude::wasm_bindgen(typescript_custom_section)]
const TS_APPEND_CONTENT: &'static str = r#"
import type { Program, Span } from "@oxc-project/types";
Expand Down

0 comments on commit 3542b4f

Please sign in to comment.