FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nativescript-angular/tests/webpack.config.js at master · NativeScript/nativescript-angular · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
nativescript-angular
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
240
Star
1.2k
Code
Issues
294
Pull requests
2
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
nativescript-angular
/
tests
/
webpack.config.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
320 lines (295 loc) · 13.1 KB
Breadcrumbs
nativescript-angular
/
tests
/
webpack.config.js
Copy path
File metadata and controls
320 lines (295 loc) · 13.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
const
{
join
,
relative
,
resolve
,
sep
,
dirname
}
=
require
(
"path"
)
;
const
webpack
=
require
(
"webpack"
)
;
const
nsWebpack
=
require
(
"nativescript-dev-webpack"
)
;
const
nativescriptTarget
=
require
(
"nativescript-dev-webpack/nativescript-target"
)
;
const
{
nsReplaceBootstrap
}
=
require
(
"nativescript-dev-webpack/transformers/ns-replace-bootstrap"
)
;
const
{
nsReplaceLazyLoader
}
=
require
(
"nativescript-dev-webpack/transformers/ns-replace-lazy-loader"
)
;
const
{
nsSupportHmrNg
}
=
require
(
"nativescript-dev-webpack/transformers/ns-support-hmr-ng"
)
;
const
{
getMainModulePath
}
=
require
(
"nativescript-dev-webpack/utils/ast-utils"
)
;
const
CleanWebpackPlugin
=
require
(
"clean-webpack-plugin"
)
;
const
CopyWebpackPlugin
=
require
(
"copy-webpack-plugin"
)
;
const
{
BundleAnalyzerPlugin
}
=
require
(
"webpack-bundle-analyzer"
)
;
const
{
NativeScriptWorkerPlugin
}
=
require
(
"nativescript-worker-loader/NativeScriptWorkerPlugin"
)
;
const
TerserPlugin
=
require
(
"terser-webpack-plugin"
)
;
const
{
getAngularCompilerPlugin
}
=
require
(
"nativescript-dev-webpack/plugins/NativeScriptAngularCompilerPlugin"
)
;
const
hashSalt
=
Date
.
now
(
)
.
toString
(
)
;
module
.
exports
=
env
=>
{
// Add your custom Activities, Services and other Android app components here.
const
appComponents
=
[
"tns-core-modules/ui/frame"
,
"tns-core-modules/ui/frame/activity"
,
]
;
const
platform
=
env
&&
(
env
.
android
&&
"android"
||
env
.
ios
&&
"ios"
)
;
if
(
!
platform
)
{
throw
new
Error
(
"You need to provide a target platform!"
)
;
}
const
AngularCompilerPlugin
=
getAngularCompilerPlugin
(
platform
)
;
const
projectRoot
=
__dirname
;
// Default destination inside platforms/<platform>/...
const
dist
=
resolve
(
projectRoot
,
nsWebpack
.
getAppPath
(
platform
,
projectRoot
)
)
;
const
{
// The 'appPath' and 'appResourcesPath' values are fetched from
// the nsconfig.json configuration file
// when bundling with `tns run android|ios --bundle`.
appPath
=
"app"
,
appResourcesPath
=
"App_Resources"
,
// You can provide the following flags when running 'tns run android|ios'
aot
,
// --env.aot
snapshot
,
// --env.snapshot,
production
,
// --env.production
uglify
,
// --env.uglify
report
,
// --env.report
sourceMap
,
// --env.sourceMap
hiddenSourceMap
,
// --env.hiddenSourceMap
hmr
,
// --env.hmr,
unitTesting
,
// --env.unitTesting
verbose
,
// --env.verbose
}
=
env
;
const
isAnySourceMapEnabled
=
!
!
sourceMap
||
!
!
hiddenSourceMap
;
const
externals
=
nsWebpack
.
getConvertedExternals
(
env
.
externals
)
;
const
appFullPath
=
resolve
(
projectRoot
,
appPath
)
;
const
appResourcesFullPath
=
resolve
(
projectRoot
,
appResourcesPath
)
;
const
tsConfigName
=
"tsconfig.tns.json"
;
const
entryModule
=
`
${
nsWebpack
.
getEntryModule
(
appFullPath
,
platform
)
}
.ts`
;
const
entryPath
=
`.
${
sep
}
${
entryModule
}
`
;
const
entries
=
{
bundle
:
entryPath
}
;
const
areCoreModulesExternal
=
Array
.
isArray
(
env
.
externals
)
&&
env
.
externals
.
some
(
e
=>
e
.
indexOf
(
"tns-core-modules"
)
>
-
1
)
;
if
(
platform
===
"ios"
&&
!
areCoreModulesExternal
)
{
entries
[
"tns_modules/tns-core-modules/inspector_modules"
]
=
"inspector_modules"
;
}
;
const
ngCompilerTransformers
=
[
]
;
const
additionalLazyModuleResources
=
[
]
;
if
(
aot
)
{
ngCompilerTransformers
.
push
(
nsReplaceBootstrap
)
;
}
if
(
hmr
)
{
ngCompilerTransformers
.
push
(
nsSupportHmrNg
)
;
}
// when "@angular/core" is external, it's not included in the bundles. In this way, it will be used
// directly from node_modules and the Angular modules loader won't be able to resolve the lazy routes
// fixes https://github.com/NativeScript/nativescript-cli/issues/4024
if
(
env
.
externals
&&
env
.
externals
.
indexOf
(
"@angular/core"
)
>
-
1
)
{
const
appModuleRelativePath
=
getMainModulePath
(
resolve
(
appFullPath
,
entryModule
)
,
tsConfigName
)
;
if
(
appModuleRelativePath
)
{
const
appModuleFolderPath
=
dirname
(
resolve
(
appFullPath
,
appModuleRelativePath
)
)
;
// include the lazy loader inside app module
ngCompilerTransformers
.
push
(
nsReplaceLazyLoader
)
;
// include the new lazy loader path in the allowed ones
additionalLazyModuleResources
.
push
(
appModuleFolderPath
)
;
}
}
const
ngCompilerPlugin
=
new
AngularCompilerPlugin
(
{
hostReplacementPaths
:
nsWebpack
.
getResolver
(
[
platform
,
"tns"
]
)
,
platformTransformers
:
ngCompilerTransformers
.
map
(
t
=>
t
(
(
)
=>
ngCompilerPlugin
,
resolve
(
appFullPath
,
entryModule
)
,
projectRoot
)
)
,
mainPath
:
join
(
appFullPath
,
entryModule
)
,
tsConfigPath
:
join
(
__dirname
,
tsConfigName
)
,
skipCodeGeneration
:
!
aot
,
sourceMap
:
!
!
isAnySourceMapEnabled
,
additionalLazyModuleResources
:
additionalLazyModuleResources
}
)
;
let
sourceMapFilename
=
nsWebpack
.
getSourceMapFilename
(
hiddenSourceMap
,
__dirname
,
dist
)
;
const
itemsToClean
=
[
`
${
dist
}
/**/*`
]
;
if
(
platform
===
"android"
)
{
itemsToClean
.
push
(
`
${
join
(
projectRoot
,
"platforms"
,
"android"
,
"app"
,
"src"
,
"main"
,
"assets"
,
"snapshots"
)
}
`
)
;
itemsToClean
.
push
(
`
${
join
(
projectRoot
,
"platforms"
,
"android"
,
"app"
,
"build"
,
"configurations"
,
"nativescript-android-snapshot"
)
}
`
)
;
}
nsWebpack
.
processAppComponents
(
appComponents
,
platform
)
;
const
config
=
{
mode
:
production
?
"production"
:
"development"
,
context
:
appFullPath
,
externals
,
watchOptions
:
{
ignored
:
[
appResourcesFullPath
,
// Don't watch hidden files
"**/.*"
,
]
}
,
target
:
nativescriptTarget
,
entry
:
entries
,
output
:
{
pathinfo
:
false
,
path
:
dist
,
sourceMapFilename
,
libraryTarget
:
"commonjs2"
,
filename
:
"[name].js"
,
globalObject
:
"global"
,
hashSalt
}
,
resolve
:
{
extensions
:
[
".ts"
,
".js"
,
".scss"
,
".css"
]
,
// Resolve {N} system modules from tns-core-modules
modules
:
[
resolve
(
__dirname
,
"node_modules/tns-core-modules"
)
,
resolve
(
__dirname
,
"node_modules"
)
,
"node_modules/tns-core-modules"
,
"node_modules"
,
]
,
alias
:
{
'~'
:
appFullPath
}
,
symlinks
:
true
}
,
resolveLoader
:
{
symlinks
:
false
}
,
node
:
{
// Disable node shims that conflict with NativeScript
"http"
:
false
,
"timers"
:
false
,
"setImmediate"
:
false
,
"fs"
:
"empty"
,
"__dirname"
:
false
,
}
,
devtool
:
hiddenSourceMap
?
"hidden-source-map"
:
(
sourceMap
?
"inline-source-map"
:
"none"
)
,
optimization
:
{
runtimeChunk
:
"single"
,
splitChunks
:
{
cacheGroups
:
{
vendor
:
{
name
:
"vendor"
,
chunks
:
"all"
,
test
:
(
module
,
chunks
)
=>
{
const
moduleName
=
module
.
nameForCondition
?
module
.
nameForCondition
(
)
:
''
;
return
/
[
\\
/
]
n
o
d
e
_
m
o
d
u
l
e
s
[
\\
/
]
/
.
test
(
moduleName
)
||
appComponents
.
some
(
comp
=>
comp
===
moduleName
)
;
}
,
enforce
:
true
,
}
,
}
}
,
minimize
:
!
!
uglify
,
minimizer
:
[
new
TerserPlugin
(
{
parallel
:
true
,
cache
:
true
,
sourceMap
:
isAnySourceMapEnabled
,
terserOptions
:
{
output
:
{
comments
:
false
,
semicolons
:
!
isAnySourceMapEnabled
}
,
compress
:
{
// The Android SBG has problems parsing the output
// when these options are enabled
'collapse_vars'
:
platform
!==
"android"
,
sequences
:
platform
!==
"android"
,
}
}
}
)
]
,
}
,
module
:
{
rules
:
[
{
test
:
nsWebpack
.
getEntryPathRegExp
(
appFullPath
,
entryPath
)
,
use
:
[
// Require all Android app components
platform
===
"android"
&&
{
loader
:
"nativescript-dev-webpack/android-app-components-loader"
,
options
:
{
modules
:
appComponents
}
}
,
{
loader
:
"nativescript-dev-webpack/bundle-config-loader"
,
options
:
{
angular
:
true
,
loadCss
:
!
snapshot
,
// load the application css if in debug mode
unitTesting
,
appFullPath
,
projectRoot
,
ignoredFiles
:
nsWebpack
.
getUserDefinedEntries
(
entries
,
platform
)
}
}
,
]
.
filter
(
loader
=>
!
!
loader
)
}
,
{
test
:
/
\.
h
t
m
l
$
|
\.
x
m
l
$
/
,
use
:
"raw-loader"
}
,
// tns-core-modules reads the app.css and its imports using css-loader
{
test
:
/
[
\/
|
\\
]
a
p
p
\.
c
s
s
$
/
,
use
:
[
"nativescript-dev-webpack/style-hot-loader"
,
{
loader
:
"css-loader"
,
options
:
{
url
:
false
}
}
]
}
,
{
test
:
/
[
\/
|
\\
]
a
p
p
\.
s
c
s
s
$
/
,
use
:
[
"nativescript-dev-webpack/style-hot-loader"
,
{
loader
:
"css-loader"
,
options
:
{
url
:
false
}
}
,
"sass-loader"
]
}
,
// Angular components reference css files and their imports using raw-loader
{
test
:
/
\.
c
s
s
$
/
,
exclude
:
/
[
\/
|
\\
]
a
p
p
\.
c
s
s
$
/
,
use
:
"raw-loader"
}
,
{
test
:
/
\.
s
c
s
s
$
/
,
exclude
:
/
[
\/
|
\\
]
a
p
p
\.
s
c
s
s
$
/
,
use
:
[
"raw-loader"
,
"resolve-url-loader"
,
"sass-loader"
]
}
,
{
test
:
/
(?:
\.
n
g
f
a
c
t
o
r
y
\.
j
s
|
\.
n
g
s
t
y
l
e
\.
j
s
|
\.
t
s
)
$
/
,
use
:
[
"nativescript-dev-webpack/moduleid-compat-loader"
,
"nativescript-dev-webpack/lazy-ngmodule-hot-loader"
,
"@ngtools/webpack"
,
]
}
,
// Mark files inside `@angular/core` as using SystemJS style dynamic imports.
// Removing this will cause deprecation warnings to appear.
{
test
:
/
[
\/
\\
]
@
a
n
g
u
l
a
r
[
\/
\\
]
c
o
r
e
[
\/
\\
]
.
+
\.
j
s
$
/
,
parser
:
{
system
:
true
}
,
}
,
]
,
}
,
plugins
:
[
// Define useful constants like TNS_WEBPACK
new
webpack
.
DefinePlugin
(
{
"global.TNS_WEBPACK"
:
"true"
,
"process"
:
"global.process"
,
}
)
,
// Remove all files from the out dir.
new
CleanWebpackPlugin
(
itemsToClean
,
{
verbose
:
!
!
verbose
}
)
,
// Copy assets to out dir. Add your own globs as needed.
new
CopyWebpackPlugin
(
[
{
from
:
{
glob
:
"fonts/**"
}
}
,
{
from
:
{
glob
:
"**/*.jpg"
}
}
,
{
from
:
{
glob
:
"**/*.png"
}
}
,
]
,
{
ignore
:
[
`
${
relative
(
appPath
,
appResourcesFullPath
)
}
/**`
]
}
)
,
new
nsWebpack
.
GenerateNativeScriptEntryPointsPlugin
(
"bundle"
)
,
// For instructions on how to set up workers with webpack
// check out https://github.com/nativescript/worker-loader
new
NativeScriptWorkerPlugin
(
)
,
ngCompilerPlugin
,
// Does IPC communication with the {N} CLI to notify events when running in watch mode.
new
nsWebpack
.
WatchStateLoggerPlugin
(
)
,
]
,
}
;
if
(
report
)
{
// Generate report files for bundles content
config
.
plugins
.
push
(
new
BundleAnalyzerPlugin
(
{
analyzerMode
:
"static"
,
openAnalyzer
:
false
,
generateStatsFile
:
true
,
reportFilename
:
resolve
(
projectRoot
,
"report"
,
`report.html`
)
,
statsFilename
:
resolve
(
projectRoot
,
"report"
,
`stats.json`
)
,
}
)
)
;
}
if
(
snapshot
)
{
config
.
plugins
.
push
(
new
nsWebpack
.
NativeScriptSnapshotPlugin
(
{
chunk
:
"vendor"
,
angular
:
true
,
requireModules
:
[
"reflect-metadata"
,
"@angular/platform-browser"
,
"@angular/core"
,
"@angular/common"
,
"@angular/router"
,
"nativescript-angular/platform-static"
,
"nativescript-angular/router"
,
]
,
projectRoot
,
webpackConfig
:
config
,
}
)
)
;
}
if
(
hmr
)
{
config
.
plugins
.
push
(
new
webpack
.
HotModuleReplacementPlugin
(
)
)
;
}
return
config
;
}
;
Back
|
FazBrowse Home
|
New Git URL