Skip to content

Commit

Permalink
Fix: cjs export
Browse files Browse the repository at this point in the history
  • Loading branch information
sandypockets committed Dec 16, 2023
1 parent e49a4e4 commit cf762f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "epic-remark",
"version": "0.1.6",
"version": "0.1.7",
"description": "Epic Remark is an all-in-one markdown to HTML processor built on top of remark",
"main": "dist/index.js",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"type": "module",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default [
{
input: 'src/index.js',
output: {
file: 'dist/index.js',
file: 'dist/index.cjs',
format: 'cjs',
sourcemap: false,
},
Expand Down

0 comments on commit cf762f3

Please sign in to comment.