Skip to content

Commit

Permalink
No longer elevate warnings to errors
Browse files Browse the repository at this point in the history
  • Loading branch information
okaycj committed Nov 6, 2024
1 parent 2d3f785 commit c3dc5bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rollup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export function makeRollupConfig(iifeName) {
}
}

if (level === "warn") {
handler("error", log);
} else {
handler(level, log);
}
// if (level === "warn") {
// handler("error", log);
// } else {
// handler(level, log);
// }
};

return jsPsychMakeRollupConfig(iifeName).map((config) => {
Expand Down

0 comments on commit c3dc5bb

Please sign in to comment.