Skip to content

Commit

Permalink
fix: fix entry file name
Browse files Browse the repository at this point in the history
  • Loading branch information
teclone committed Apr 16, 2023
1 parent 3058a90 commit 8351e96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ module.exports = createConfig({
plugins: [],

/**
* entry file for umd/iife build
* entry file for umd/iife build, index here matches any of the extensions
*/
entryFile: 'index.js',
entryFile: 'index',

/**
* package export name for umd/iife,
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const config: Config = {

plugins: [],

entryFile: 'index.js',
entryFile: 'index',

moduleName: '',

Expand Down

0 comments on commit 8351e96

Please sign in to comment.