We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6481f6f commit 935bc4cCopy full SHA for 935bc4c
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "whop-sdk-ts",
3
- "version": "0.0.3-canary.1",
+ "version": "0.0.3-canary.2",
4
"private": true,
5
"workspaces": [
6
"apps/*",
packages/repo-utils/src/build.ts
@@ -90,7 +90,7 @@ class Buildr {
90
91
private fixESM = (code: string) => {
92
return code.replace(
93
- /(?:(?:^|\s)import\("(\.\.?\/.*)"\)|(?:import|export) (?:[a-zA-Z0-9_\s{}\n,])* from "(\.\.?\/.*)";)/gm,
+ /(?:(?:^|\s)import\("(\.\.?\/.*)"\)|(?:import|export) (?:[a-zA-Z0-9_\s{}\n,*])* from "(\.\.?\/.*)";)/gm,
94
(match, dynamicImport, staticImport) => {
95
return match.replace(
96
`"${staticImport || dynamicImport}"`,
0 commit comments