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

Commit bd825b3

Browse files
committed
fix(templates): Disable node "fs" shim
Clashes with `everlive-sdk` plugin. Closes #80
1 parent 93c7506 commit bd825b3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Diff for: webpack.common.js.angular.template

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ module.exports = function (platform, destinationApp) {
104104
"http": false,
105105
"timers": false,
106106
"setImmediate": false,
107+
"fs": "empty",
107108
},
108109
module: {
109110
loaders: [

Diff for: webpack.common.js.nativescript.template

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ module.exports = function (platform, destinationApp) {
9090
"http": false,
9191
"timers": false,
9292
"setImmediate": false,
93+
"fs": "empty",
9394
},
9495
module: {
9596
loaders: [

0 commit comments

Comments
 (0)