Skip to content

Commit

Permalink
rename to skipExtensionImports
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed May 23, 2024
1 parent 977a030 commit f4b06cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rendering/renderers/shared/system/AbstractRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class AbstractRenderer<
*/
public async init(options: Partial<OPTIONS> = {})
{
const skip = options.manualExtensions === true ? true : options.manageImports === false;
const skip = options.skipExtensionImports === true ? true : options.manageImports === false;

await loadEnvironmentExtensions(skip);

Expand Down
5 changes: 3 additions & 2 deletions src/rendering/renderers/shared/system/SharedSystems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,11 @@ export interface SharedRendererOptions extends ExtractRendererOptions<typeof Sha
* ```
* @default false
*/
manualExtensions?: boolean;
skipExtensionImports?: boolean;
/**
* @default true
* @deprecated Use `manualExtensions` instead
* @deprecated since 8.1.6
* @see `skipExtensionImports`
*/
manageImports?: boolean;
}

0 comments on commit f4b06cc

Please sign in to comment.