Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

fix(configs): don't follow symlinks for loaders #287

Merged
merged 1 commit into from
Oct 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions prepublish/common/exports.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ module.exports = env => {
// and will enable us to work with symlinked packages during development.
symlinks: false
},
resolveLoader: {
// This will not follow symlinks to their original location,
// and will enable us to work with symlinked loader packages during development.
symlinks: false
},
node: {
// Disable node shims that conflict with NativeScript
"http": false,
Expand Down
5 changes: 5 additions & 0 deletions templates/webpack.angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ module.exports = env => {
// and will enable us to work with symlinked packages during development.
symlinks: false
},
resolveLoader: {
// This will not follow symlinks to their original location,
// and will enable us to work with symlinked loader packages during development.
symlinks: false
},
node: {
// Disable node shims that conflict with NativeScript
"http": false,
Expand Down
5 changes: 5 additions & 0 deletions templates/webpack.javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ module.exports = env => {
// and will enable us to work with symlinked packages during development.
symlinks: false
},
resolveLoader: {
// This will not follow symlinks to their original location,
// and will enable us to work with symlinked loader packages during development.
symlinks: false
},
node: {
// Disable node shims that conflict with NativeScript
"http": false,
Expand Down
5 changes: 5 additions & 0 deletions templates/webpack.typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ module.exports = env => {
// and will enable us to work with symlinked packages during development.
symlinks: false
},
resolveLoader: {
// This will not follow symlinks to their original location,
// and will enable us to work with symlinked loader packages during development.
symlinks: false
},
node: {
// Disable node shims that conflict with NativeScript
"http": false,
Expand Down