File tree 3 files changed +17
-8
lines changed
3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import {
22
22
} from '../lib/configuration/defaults' ;
23
23
import { FileSystemReader } from '../lib/readers' ;
24
24
import { ERROR_PREFIX } from '../lib/ui' ;
25
+ import { isModuleAvailable } from '../lib/utils/is-module-available' ;
25
26
import { AbstractAction } from './abstract.action' ;
26
27
import webpack = require( 'webpack' ) ;
27
28
@@ -261,13 +262,10 @@ export class BuildAction extends AbstractAction {
261
262
webpackRef : typeof webpack ,
262
263
) => webpack . Configuration {
263
264
const pathToWebpackFile = join ( process . cwd ( ) , webpackPath ) ;
264
- try {
265
- return require ( pathToWebpackFile ) ;
266
- } catch ( err ) {
267
- if ( webpackPath !== defaultPath ) {
268
- throw err ;
269
- }
265
+ const isWebpackFileAvailable = isModuleAvailable ( pathToWebpackFile ) ;
266
+ if ( ! isWebpackFileAvailable && webpackPath === defaultPath ) {
270
267
return ( { } ) => ( { } ) ;
271
268
}
269
+ return require ( pathToWebpackFile ) ;
272
270
}
273
271
}
Original file line number Diff line number Diff line change @@ -60,10 +60,13 @@ export class AssetsManager {
60
60
61
61
const filesToCopy = assets . map < AssetEntry > ( ( item ) => {
62
62
let includePath = typeof item === 'string' ? item : item . include ! ;
63
- let excludePath = typeof item !== 'string' && item . exclude ? item . exclude : undefined ;
63
+ let excludePath =
64
+ typeof item !== 'string' && item . exclude ? item . exclude : undefined ;
64
65
65
66
includePath = join ( sourceRoot , includePath ) . replace ( / \\ / g, '/' ) ;
66
- excludePath = excludePath ? join ( sourceRoot , excludePath ) . replace ( / \\ / g, '/' ) : undefined ;
67
+ excludePath = excludePath
68
+ ? join ( sourceRoot , excludePath ) . replace ( / \\ / g, '/' )
69
+ : undefined ;
67
70
68
71
return {
69
72
outDir : typeof item !== 'string' ? item . outDir || outDir : outDir ,
Original file line number Diff line number Diff line change
1
+ export function isModuleAvailable ( path : string ) : boolean {
2
+ try {
3
+ require . resolve ( path ) ;
4
+ return true ;
5
+ } catch {
6
+ return false ;
7
+ }
8
+ }
You can’t perform that action at this time.
0 commit comments