Skip to content

Commit

Permalink
fix: update fileUploader to pascalCase FileUploader
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Dec 29, 2023
1 parent d5abbe2 commit 762f2b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const path = require('path');
const CoCreateConfig = require('./CoCreate.config')
const { ModuleGenerator, fileUploader, SymlinkCreator, escapeCharacters } = require('@cocreate/webpack')
const { ModuleGenerator, FileUploader, SymlinkCreator } = require('@cocreate/webpack')


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

plugins: [
new ModuleGenerator(CoCreateConfig.modules),
new fileUploader(env, argv),
new FileUploader(env, argv),
new SymlinkCreator(),
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
Expand Down

0 comments on commit 762f2b9

Please sign in to comment.