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

Commit 98cff1a

Browse files
committed
fix: remove outdated android compress limitations
1 parent 6d7f5c2 commit 98cff1a

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed

Diff for: templates/webpack.angular.js

-6
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,6 @@ module.exports = env => {
174174
output: {
175175
comments: false,
176176
semicolons: !isAnySourceMapEnabled
177-
},
178-
compress: {
179-
// The Android SBG has problems parsing the output
180-
// when these options are enabled
181-
'collapse_vars': platform !== "android",
182-
sequences: platform !== "android",
183177
}
184178
}
185179
})

Diff for: templates/webpack.javascript.js

-6
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,6 @@ module.exports = env => {
135135
output: {
136136
comments: false,
137137
semicolons: !isAnySourceMapEnabled
138-
},
139-
compress: {
140-
// The Android SBG has problems parsing the output
141-
// when these options are enabled
142-
'collapse_vars': platform !== "android",
143-
sequences: platform !== "android",
144138
}
145139
}
146140
})

Diff for: templates/webpack.typescript.js

-6
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,6 @@ module.exports = env => {
137137
output: {
138138
comments: false,
139139
semicolons: !isAnySourceMapEnabled
140-
},
141-
compress: {
142-
// The Android SBG has problems parsing the output
143-
// when these options are enabled
144-
'collapse_vars': platform !== "android",
145-
sequences: platform !== "android",
146140
}
147141
}
148142
})

Diff for: templates/webpack.vue.js

-6
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,6 @@ module.exports = env => {
149149
comments: false,
150150
semicolons: !isAnySourceMapEnabled
151151
},
152-
compress: {
153-
// The Android SBG has problems parsing the output
154-
// when these options are enabled
155-
'collapse_vars': platform !== "android",
156-
sequences: platform !== "android",
157-
},
158152
keep_fnames: true,
159153
},
160154
}),

0 commit comments

Comments
 (0)