Skip to content

Commit

Permalink
Actually don't omit analyzeDependencies from bundle options
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Jul 4, 2023
1 parent 83bab71 commit bd517fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export interface DependencyOptions {
preserveImports?: boolean
}

export type BundleOptions<C extends CustomAtRules> = Omit<TransformOptions<C>, 'code' | 'analyzeDependencies'>;
export type BundleOptions<C extends CustomAtRules> = Omit<TransformOptions<C>, 'code'>;

export interface BundleAsyncOptions<C extends CustomAtRules> extends BundleOptions<C> {
resolver?: Resolver;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lightningcss",
"version": "1.21.3",
"version": "1.21.4",
"license": "MPL-2.0",
"description": "A CSS parser, transformer, and minifier written in Rust",
"main": "node/index.js",
Expand Down

0 comments on commit bd517fd

Please sign in to comment.