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 @@ -23,14 +23,14 @@ PhpOutputPlugin.prototype.apply = function apply(compiler) {
2323
2424 var getCssFiles = function ( filelist , filepath ) {
2525 return _ . map (
26- _ . filter ( filelist , filename => filename . endsWith ( '.css' ) ) , // filtering
26+ _ . filter ( filelist , filename => filename . endsWith ( '.css' ) && ! filename . startsWith ( 'editor-style' ) ) , // filtering
2727 filename => path . join ( options . assetsPathPrefix , filepath , filename ) // mapping filtered
2828 )
2929 }
3030
3131 var getJsFiles = function ( filelist , filepath ) {
3232 let files = _ . map (
33- _ . filter ( filelist , filename => filename . endsWith ( '.js' ) ) , // filtering
33+ _ . filter ( filelist , filename => filename . endsWith ( '.js' ) && ! filename . startsWith ( 'editor-style' ) ) , // filtering
3434 filename => path . join ( options . assetsPathPrefix , filepath , filename ) // mapping filtered
3535 )
3636
You can’t perform that action at this time.
0 commit comments