Skip to content

Commit

Permalink
fix: fix bad export
Browse files Browse the repository at this point in the history
  • Loading branch information
delanni committed Dec 15, 2023
1 parent 6f95cb7 commit 8c0815b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundle.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -47354,7 +47354,7 @@

emitter.on('gallery:export', (e) => {
const fixCode = (code) => {
return code.replace(/([^\s])*([^\s])/g, '$1 * $2');
return code.replace(/([^\s])\*([^\s])/g, '$1 * $2');
}

// we have to deduplicate by name b4 saving
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/* generated */ const version = { "date": "2023-12-15T22:41:29.101Z", "commit": "try to bust the cache on version.js" }
/* generated */ const version = { "date": "2023-12-15T22:45:26.499Z", "commit": "fix: fix bad export" }

console.log("VERSION", version);

0 comments on commit 8c0815b

Please sign in to comment.