Skip to content

Commit

Permalink
Restored .min.js
Browse files Browse the repository at this point in the history
  • Loading branch information
knowledgecode committed Jan 13, 2023
1 parent 3c88a25 commit eaf423d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.min.js
.DS_Store
dist
node_modules
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.*
rollup.config.js
rollup.config.mjs
src
test
3 changes: 2 additions & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export default [
output: [
{ file: 'dist/esm/jquery-param.js', format: 'es' },
{ file: 'dist/esm/jquery-param.mjs', format: 'es' },
{ file: 'dist/umd/jquery-param.js', format: 'umd', name: 'param' }
{ file: 'dist/umd/jquery-param.js', format: 'umd', name: 'param' },
{ file: 'jquery-param.min.js', format: 'umd', name: 'param' }
],
plugins: [terser()]
}
Expand Down

0 comments on commit eaf423d

Please sign in to comment.