File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ await esbuild.build({
5555 setup ( build ) {
5656 // Update esbuild to support the import attributes syntax in this PR is too risky.
5757 // TODO: update esbuild and remove the hack.
58- build . onLoad ( { filter : / @ v u e \/ c r e a t e - e s l i n t - c o n f i g \/ i n d e x .j s $ / } , ( args ) => {
58+ build . onLoad ( { filter : / @ v u e . c r e a t e - e s l i n t - c o n f i g . i n d e x .j s $ / } , ( args ) => {
5959 const text = fs . readFileSync ( args . path , 'utf8' )
6060 return {
6161 contents : text . replace ( `with { type: 'json' }` , '' ) ,
@@ -65,7 +65,7 @@ await esbuild.build({
6565
6666 // The renderEjsFile.js module uses file system APIs therefore after bundling it will not work.
6767 // So we need to preprocess it to remove the file system APIs.
68- build . onLoad ( { filter : / @ v u e \/ c r e a t e - e s l i n t - c o n f i g \/ r e n d e r E j s F i l e .j s $ / } , ( args ) => {
68+ build . onLoad ( { filter : / @ v u e . c r e a t e - e s l i n t - c o n f i g . r e n d e r E j s F i l e \ .j s $ / } , ( args ) => {
6969 const pkgDir = path . dirname ( args . path )
7070 const templatesDir = path . resolve ( pkgDir , './templates' )
7171
You can’t perform that action at this time.
0 commit comments