mirror of
https://github.com/youzan/vant.git
synced 2025-10-21 11:17:41 +00:00
fix: typo (#7868)
This commit is contained in:
@@ -9,7 +9,7 @@ type Options = {
|
||||
pathResolver?: (path: string) => string;
|
||||
};
|
||||
|
||||
export function genPacakgeStyle(options: Options) {
|
||||
export function genPackageStyle(options: Options) {
|
||||
const styleDepsJson = require(STYPE_DEPS_JSON_FILE);
|
||||
const ext = '.' + CSS_LANG;
|
||||
|
||||
|
@@ -2,7 +2,7 @@ import { Compiler } from 'webpack';
|
||||
import { replaceExt } from '../common';
|
||||
import { CSS_LANG } from '../common/css';
|
||||
import { genPackageEntry } from './gen-package-entry';
|
||||
import { genPacakgeStyle } from './gen-package-style';
|
||||
import { genPackageStyle } from './gen-package-style';
|
||||
import { genSiteMobileShared } from './gen-site-mobile-shared';
|
||||
import { genSiteDesktopShared } from './gen-site-desktop-shared';
|
||||
import { genStyleDepsMap } from './gen-style-deps-map';
|
||||
@@ -17,7 +17,7 @@ export async function genSiteEntry(): Promise<void> {
|
||||
genPackageEntry({
|
||||
outputPath: PACKAGE_ENTRY_FILE,
|
||||
});
|
||||
genPacakgeStyle({
|
||||
genPackageStyle({
|
||||
outputPath: replaceExt(PACKAGE_STYLE_FILE, `.${CSS_LANG}`),
|
||||
});
|
||||
genSiteMobileShared();
|
||||
|
Reference in New Issue
Block a user