fix(@embark/pipeline): adjust ignore paths

The ignore paths for the default webpack config and babel-loader-overrides
helper script weren't properly adjusted after the legacy pipeline was split-out
into its own package in the monorepo.
This commit is contained in:
Michael Bradley, Jr 2019-08-08 17:20:03 -05:00 committed by Michael Bradley
parent 2e33d05251
commit e58c5528a6
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ module.exports = (api) => {
const node = cloneDeep(base);
Object.assign(node, {
ignore: [
'src/lib/modules/pipeline/babel-loader-overrides.js',
'src/lib/modules/pipeline/webpack.config.js'
'src/babel-loader-overrides.js',
'src/webpack.config.js'
]
});