-
-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathwebpack.config.js
286 lines (245 loc) · 9.92 KB
/
webpack.config.js
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
const { resolve, join } = require("path");
const webpack = require("webpack");
const nsWebpack = require("nativescript-dev-webpack");
const nativescriptTarget = require("nativescript-dev-webpack/nativescript-target");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
const { NativeScriptWorkerPlugin } = require("nativescript-worker-loader/NativeScriptWorkerPlugin");
const { AngularCompilerPlugin } = require("@ngtools/webpack");
const path = require("path");
class NativeScriptAngularCompilerPlugin extends AngularCompilerPlugin {
constructor(options) {
super(options);
// TODO: This should be able to call webpack for a module and resolve to a file?
// https://github.com/angular/angular/blob/7bfeac746e717d02e062fe4a65c008060b8b662c/packages/compiler-cli/src/transformers/api.ts
const resourceNameToFileName = this._compilerHost.resourceNameToFileName || function(file, relativeTo) {
const resolved = path.resolve(path.dirname(relativeTo), file);
if (this.fileExists(resolved)) {
return resolved;
} else {
return null;
}
};
this._compilerHost.resourceNameToFileName = function(file, relativeTo) {
const parsed= path.parse(file);
const platformFile = parsed.name + ".android" + parsed.ext;
let resolved;
try {
resolved = resourceNameToFileName.call(this, platformFile, relativeTo);
} catch(e) {
}
resolved = resolved || resourceNameToFileName.call(this, file, relativeTo);
return resolved;
};
}
apply(compiler) {
super.apply(compiler);
compiler.plugin('environment', () => {
console.log("compiler.plugin(environment), inputFileSystem: " + compiler.inputFileSystem);
// compiler.inputFileSystem = new virtual_file_system_decorator_1.VirtualFileSystemDecorator(compiler.inputFileSystem, this._compilerHost);
// compiler.watchFileSystem = new virtual_file_system_decorator_1.VirtualWatchFileSystemDecorator(compiler.inputFileSystem);
});
}
}
const mainSheet = `app.css`;
module.exports = env => {
const platform = getPlatform(env);
const platforms = ["ios", "android"];
const skipCodeGeneration = env.skipCodeGeneration;
const ngToolsWebpackOptions = { tsConfigPath: skipCodeGeneration ? "tsconfig.json" : "tsconfig.aot.json"};
// Default destination inside platforms/<platform>/...
const path = resolve(nsWebpack.getAppPath(platform));
const entry = {
// Discover entry module from package.json
bundle: skipCodeGeneration ? "./main.ts" : "./main.aot.ts", // TODO: `./${nsWebpack.getEntryModule()}`,
// Vendor entry with third-party libraries
vendor: `./vendor`,
// Entry for stylesheet with global application styles
[mainSheet]: `./${mainSheet}`,
};
const rules = getRules();
const plugins = getPlugins(platform, env);
const config = {
context: resolve("./app"),
target: nativescriptTarget,
entry,
output: {
pathinfo: true,
path,
libraryTarget: "commonjs2",
filename: "[name].js",
},
resolve: {
extensions: [ ".ts", ".js", ".css" ],
plugins: [
new nsWebpack.PlatformSuffixPlugin(platform, platforms)
],
// Resolve {N} system modules from tns-core-modules
modules: [
"node_modules/tns-core-modules",
"node_modules",
],
alias: {
'~': resolve("./app")
},
// This will not follow symlinks to their original location,
// and will enable us to work with symlinked packages during development.
symlinks: false
},
node: {
// Disable node shims that conflict with NativeScript
"http": false,
"timers": false,
"setImmediate": false,
"fs": "empty",
},
module: { rules },
plugins,
};
if (env.snapshot) {
plugins.push(new nsWebpack.NativeScriptSnapshotPlugin({
chunk: "vendor",
projectRoot: __dirname,
webpackConfig: config,
targetArchs: ["arm", "arm64", "ia32"],
tnsJavaClassesOptions: { packages: ["tns-core-modules" ] },
useLibs: false
}));
}
return config;
function getPlatform() {
return env.android ? "android" :
env.ios ? "ios" :
() => { throw new Error("You need to provide a target platform!") };
}
function getRules() {
return [
{
test: /\.html$|\.xml$/,
use: [
"raw-loader",
]
},
// Root stylesheet gets extracted with bundled dependencies
{
test: new RegExp(mainSheet),
use: ExtractTextPlugin.extract([
{
loader: "resolve-url-loader",
options: { silent: true },
},
{
loader: "nativescript-css-loader",
options: { minimize: false }
},
"nativescript-dev-webpack/platform-css-loader",
]),
},
// Other CSS files get bundled using the raw loader
{
test: /\.css$/,
exclude: new RegExp(mainSheet),
use: [
"raw-loader",
]
},
// SASS support
{
test: /\.scss$/,
use: [
"raw-loader",
"resolve-url-loader",
"sass-loader",
]
},
// Compile TypeScript files with ahead-of-time compiler.
{
test: /.ts$/,
loader: "@ngtools/webpack"
},
];
}
function getPlugins() {
let plugins = [
new ExtractTextPlugin(mainSheet),
// Vendor libs go to the vendor.js chunk
new webpack.optimize.CommonsChunkPlugin({
name: ["vendor"],
}),
// Define useful constants like TNS_WEBPACK
new webpack.DefinePlugin({
"global.TNS_WEBPACK": "true",
"global.skipCodeGeneration": skipCodeGeneration
}),
// Copy assets to out dir. Add your own globs as needed.
new CopyWebpackPlugin([
{ from: mainSheet },
{ from: "css/**" },
{ from: "fonts/**" },
{ from: "**/*.jpg" },
{ from: "**/*.png" },
{ from: "**/*.xml" },
]),
// Generate a bundle starter script and activate it in package.json
new nsWebpack.GenerateBundleStarterPlugin([
"./vendor",
"./bundle",
]),
// Support for web workers since v3.2
new NativeScriptWorkerPlugin(),
// Generate report files for bundles content
new BundleAnalyzerPlugin({
analyzerMode: "static",
openAnalyzer: false,
generateStatsFile: true,
reportFilename: join(__dirname, "report", `report.html`),
statsFilename: join(__dirname, "report", `stats.json`),
}),
new NativeScriptAngularCompilerPlugin(
Object.assign({
entryModule: resolve(__dirname, "app/app.module#AppModule"),
typeChecking: false,
noResolve: true,
skipCodeGeneration,
// hostReplacementPaths: {
// [resolve("app/examples-list.component.css")]: resolve("app/examples-list.component.android.css"),
// [resolve("app/vendor-platform.ts")]: resolve("app/vendor-platform.android.ts"),
// }
}, ngToolsWebpackOptions)
)
// // // Angular AOT compiler
// new AngularCompilerPlugin(
// Object.assign({
// entryModule: resolve(__dirname, "app/app.module#AppModule"),
// typeChecking: false,
// noResolve: true,
// skipCodeGeneration,
// // hostReplacementPaths: {
// // [resolve("app/examples-list.component.css")]: resolve("app/examples-list.component.android.css"),
// // [resolve("app/vendor-platform.ts")]: resolve("app/vendor-platform.android.ts"),
// // }
// }, ngToolsWebpackOptions)
// ),
// new nsWebpack.PlatformFSPlugin({
// platform, platforms, ignore: ["App_Resources"]
// })
// // Resolve .ios.css and .android.css component stylesheets, and .ios.html and .android component views
// new nsWebpack.UrlResolvePlugin({
// platform: platform,
// resolveStylesUrls: true,
// resolveTemplateUrl: true
// }),
];
if (env.uglify) {
plugins.push(new webpack.LoaderOptionsPlugin({ minimize: true }));
// Work around an Android issue by setting compress = false
const compress = platform !== "android";
plugins.push(new webpack.optimize.UglifyJsPlugin({
mangle: { except: nsWebpack.uglifyMangleExcludes },
compress,
}));
}
return plugins;
}
};