Skip to content

Commit

Permalink
fix #879
Browse files Browse the repository at this point in the history
  • Loading branch information
uNmAnNeR committed Jun 22, 2023
1 parent 37716e9 commit a7fdddf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/imask/rollup.config.mjs
Expand Up @@ -24,9 +24,9 @@ export default [
...[false, true].map(min => ({
input: 'src/index.ts',
output: {
name: 'IMask',
file: `dist/imask${min ? '.min' : ''}.js`,
format: 'umd',
name: 'IMask',
sourcemap: true,
exports: 'named',
},
Expand Down
1 change: 1 addition & 0 deletions packages/react-imask/rollup.config.mjs
Expand Up @@ -38,6 +38,7 @@ export default [
globals,
format: 'umd',
sourcemap: true,
interop: 'auto',
},
plugins: commonPlugins,
},
Expand Down
1 change: 1 addition & 0 deletions packages/react-native-imask/rollup.config.mjs
Expand Up @@ -30,6 +30,7 @@ export default [
globals,
format: 'umd',
sourcemap: true,
interop: 'auto',
},
plugins: babel(babelConfig),
},
Expand Down
1 change: 1 addition & 0 deletions packages/solid-imask/rollup.config.mjs
Expand Up @@ -38,6 +38,7 @@ export default [
globals,
format: 'umd',
sourcemap: true,
interop: 'auto',
},
plugins: commonPlugins,
},
Expand Down
1 change: 1 addition & 0 deletions packages/svelte-imask/rollup.config.mjs
Expand Up @@ -33,6 +33,7 @@ export default [
format: 'umd',
sourcemap: true,
globals,
interop: 'auto',
},
plugins: commonPlugins,
},
Expand Down
1 change: 1 addition & 0 deletions packages/svelte-imask/src/index.ts
@@ -1,2 +1,3 @@
import 'imask';
export { default as IMask } from 'imask';
export { default as imask } from './action';
1 change: 1 addition & 0 deletions packages/vue-imask/rollup.config.mjs
Expand Up @@ -37,6 +37,7 @@ export default [
format: 'umd',
sourcemap: true,
globals,
interop: 'auto',
},
plugins: commonPlugins,
},
Expand Down

0 comments on commit a7fdddf

Please sign in to comment.