Skip to content

Commit 762f2b9

Browse files
committed
fix: update fileUploader to pascalCase FileUploader
1 parent d5abbe2 commit 762f2b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require('path');
22
const CoCreateConfig = require('./CoCreate.config')
3-
const { ModuleGenerator, fileUploader, SymlinkCreator, escapeCharacters } = require('@cocreate/webpack')
3+
const { ModuleGenerator, FileUploader, SymlinkCreator } = require('@cocreate/webpack')
44

55

66
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
@@ -28,7 +28,7 @@ module.exports = async (env, argv) => {
2828

2929
plugins: [
3030
new ModuleGenerator(CoCreateConfig.modules),
31-
new fileUploader(env, argv),
31+
new FileUploader(env, argv),
3232
new SymlinkCreator(),
3333
new CleanWebpackPlugin(),
3434
new MiniCssExtractPlugin({

0 commit comments

Comments
 (0)