Skip to content

Commit

Permalink
[FIX] package: Fix typo in module key
Browse files Browse the repository at this point in the history
The filename in the key `module` from `package.json` did not match
the actual file generated with rollup.

closes #4819

Task: 0
X-original-commit: 9adec36
Signed-off-by: Lucas Lefèvre (lul) <[email protected]>
Signed-off-by: Rémi Rahir (rar) <[email protected]>
  • Loading branch information
rrahir committed Aug 9, 2024
1 parent 5d4bc65 commit 5c2ff79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"main": "dist/o-spreadsheet.cjs.js",
"browser": "dist/o-spreadsheet.iife.js",
"module": "dist/o-spreadsheet.es.js",
"module": "dist/o-spreadsheet.esm.js",
"types": "dist/o-spreadsheet.d.ts",
"files": [
"dist/*.js",
Expand Down

0 comments on commit 5c2ff79

Please sign in to comment.