Skip to content

Commit ee09f34

Browse files
刘专chenjiahan
authored andcommitted
fix(build): fix typo (youzan#3891)
1 parent 7e377f6 commit ee09f34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/build-entry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function buildEntry() {
1717

1818
const importList = Components.map(name => `import ${uppercamelize(name)} from './${name}';`);
1919
const exportList = Components.map(name => `${uppercamelize(name)}`);
20-
const intallList = exportList.filter(name => !~uninstallComponents.indexOf(uppercamelize(name)));
20+
const installList = exportList.filter(name => !~uninstallComponents.indexOf(uppercamelize(name)));
2121
const content = `${tips}
2222
import { VueConstructor } from 'vue/types';
2323
${importList.join('\n')}
@@ -30,7 +30,7 @@ declare global {
3030
3131
const version = '${version}';
3232
const components = [
33-
${intallList.join(',\n ')}
33+
${installList.join(',\n ')}
3434
];
3535
3636
const install = (Vue: VueConstructor) => {

0 commit comments

Comments
 (0)