This repository was archived by the owner on Aug 7, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-149
lines changed Expand file tree Collapse file tree 6 files changed +9
-149
lines changed Original file line number Diff line number Diff line change 18
18
},
19
19
"devDependencies" : {
20
20
"awesome-typescript-loader" : " ~3.1.3" ,
21
+ "@types/chai" : " ^4.0.2" ,
22
+ "@types/mocha" : " ^2.2.41" ,
23
+ "@types/node" : " ^7.0.5" ,
21
24
"babel-traverse" : " 6.26.0" ,
22
25
"babel-types" : " 6.26.0" ,
23
26
"babylon" : " 6.18.0" ,
24
27
"copy-webpack-plugin" : " ~4.0.1" ,
25
28
"css-loader" : " ~0.28.7" ,
26
29
"extract-text-webpack-plugin" : " ~3.0.0" ,
27
30
"lazy" : " 1.0.11" ,
31
+ "mocha" : " ~3.5.0" ,
32
+ "mocha-junit-reporter" : " ^1.13.0" ,
33
+ "mocha-multi" : " ^0.11.0" ,
28
34
"nativescript-dev-appium" : " next" ,
29
35
"nativescript-dev-sass" : " ^1.3.5" ,
30
36
"nativescript-dev-typescript" : " next" ,
35
41
"resolve-url-loader" : " ~2.1.0" ,
36
42
"sass-loader" : " ^6.0.6" ,
37
43
"typescript" : " ~2.6.2" ,
38
- "webpack" : " ~3.8.1 " ,
39
- "webpack-bundle-analyzer" : " ^2.8.2 " ,
40
- "webpack-sources" : " ~1.0.1 "
44
+ "webpack" : " ~3.10.0 " ,
45
+ "webpack-bundle-analyzer" : " ^2.9.1 " ,
46
+ "webpack-sources" : " ^1.1.0 "
41
47
},
42
48
"scripts" : {
43
49
"ns-bundle" : " ns-bundle" ,
Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ if (isAngular({ projectDir: PROJECT_DIR })) {
12
12
Object . assign ( exports , require ( './plugins/angular' ) ) ;
13
13
}
14
14
15
- exports . uglifyMangleExcludes = require ( "./mangle-excludes" ) ;
16
-
17
15
exports . getEntryModule = function ( ) {
18
16
const maybePackageJsonEntry = getPackageJsonEntry ( ) ;
19
17
if ( ! maybePackageJsonEntry ) {
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -161,7 +161,6 @@ module.exports = env => {
161
161
const compress = platform !== "android" ;
162
162
config . plugins . push ( new UglifyJsPlugin ( {
163
163
uglifyOptions : {
164
- mangle : { reserved : nsWebpack . uglifyMangleExcludes } ,
165
164
compress,
166
165
}
167
166
} ) ) ;
Original file line number Diff line number Diff line change @@ -139,7 +139,6 @@ module.exports = env => {
139
139
const compress = platform !== "android" ;
140
140
config . plugins . push ( new UglifyJsPlugin ( {
141
141
uglifyOptions : {
142
- mangle : { reserved : nsWebpack . uglifyMangleExcludes } ,
143
142
compress,
144
143
}
145
144
} ) ) ;
Original file line number Diff line number Diff line change @@ -141,7 +141,6 @@ module.exports = env => {
141
141
const compress = platform !== "android" ;
142
142
config . plugins . push ( new UglifyJsPlugin ( {
143
143
uglifyOptions : {
144
- mangle : { reserved : nsWebpack . uglifyMangleExcludes } ,
145
144
compress,
146
145
}
147
146
} ) ) ;
You can’t perform that action at this time.
0 commit comments