Skip to content

Commit

Permalink
feat(build:backend): don't treat @internal -prefixed packages as exte…
Browse files Browse the repository at this point in the history
…rnals
  • Loading branch information
NicolaiSchmid committed Jan 13, 2020
1 parent 46958f6 commit e379f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/webpack.config.backend.prod.js
Expand Up @@ -34,7 +34,7 @@ module.exports = argv => {
externals: [
nodeExternals({
// load non-javascript files with extensions, presumably via loaders
whitelist: [/\.(?!(?:jsx?|json)$).{1,5}$/i],
whitelist: [/\.(?!(?:jsx?|json)$).{1,5}$/i, /@internal/],
modulesFromFile: true,
}),
],
Expand Down

0 comments on commit e379f93

Please sign in to comment.