Skip to content

Commit a329e24

Browse files
committed
chore: Fix typo in function name
1 parent 249cf63 commit a329e24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/core/builders/vite/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
import * as wxtPlugins from './plugins';
1313
import { getEntrypointBundlePath } from '~/core/utils/entrypoints';
1414

15-
export async function craeteViteBuilder(
15+
export async function createViteBuilder(
1616
inlineConfig: InlineConfig,
1717
userConfig: UserConfig,
1818
wxtConfig: Omit<InternalConfig, 'builder'>,

src/core/utils/building/get-internal-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
import path from 'node:path';
1313
import { createFsCache } from '~/core/utils/cache';
1414
import consola, { LogLevels } from 'consola';
15-
import { craeteViteBuilder } from '~/core/builders/vite';
15+
import { createViteBuilder } from '~/core/builders/vite';
1616
import defu from 'defu';
1717
import { NullablyRequired } from '../types';
1818

@@ -134,7 +134,7 @@ export async function getInternalConfig(
134134
server,
135135
};
136136

137-
const builder = await craeteViteBuilder(
137+
const builder = await createViteBuilder(
138138
inlineConfig,
139139
userConfig,
140140
finalConfig,

0 commit comments

Comments
 (0)