Skip to content

Commit

Permalink
fix: rollup entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
themustafaomar committed Jan 6, 2023
1 parent 4c42bd5 commit 55549e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import autoprefixer from 'autoprefixer'
import scss from 'rollup-plugin-scss'
import postcss from 'postcss'

const INPUT_FILE = 'src/js/jsvectormap.js'
const INPUT_FILE = 'src/js/index.js'
const LIBRARY_NAME = 'jsVectorMap'

function scssOptions(filename, outputStyle = 'expanded') {
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
input: 'src/js/index.js',
output: {
name: 'jsVectorMap',
file: 'dist/js/index.js',
file: 'dist/js/jsvectormap.js',
format: 'umd',
},
plugins: [
Expand Down

0 comments on commit 55549e0

Please sign in to comment.