File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @effect/remix-plugin " : patch
3
+ ---
4
+
5
+ fix missing regexp escapes
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ export const effectPlugin = (): esbuild.Plugin => {
156
156
if ( ! services ) {
157
157
services = init ( )
158
158
}
159
- build . onLoad ( { filter : / ( .t s | .t s x | .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
159
+ build . onLoad ( { filter : / ( \ .t s | \ .t s x | \ .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
160
160
const cached = fromCache ( args . path )
161
161
if ( cached ) {
162
162
return {
@@ -181,7 +181,7 @@ export const effectPlugin = (): esbuild.Plugin => {
181
181
if ( ! services ) {
182
182
services = init ( )
183
183
}
184
- build . onLoad ( { filter : / ( .t s | .t s x | .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
184
+ build . onLoad ( { filter : / ( \ .t s | \ .t s x | \ .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
185
185
const cached = fromCache ( args . path )
186
186
if ( cached ) {
187
187
return {
@@ -195,7 +195,7 @@ export const effectPlugin = (): esbuild.Plugin => {
195
195
}
196
196
} )
197
197
} else if ( useBabel ) {
198
- build . onLoad ( { filter : / ( .t s | .t s x | .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
198
+ build . onLoad ( { filter : / ( \ .t s | \ .t s x | \ .t s x ? b r o w s e r ) $ / } , ( args : any ) => {
199
199
const cached = fromCache ( args . path )
200
200
if ( cached ) {
201
201
return {
You can’t perform that action at this time.
0 commit comments