webpack/lib/WebpackOptionsDefaulter.js

79 lines
2.7 KiB
JavaScript
Raw Normal View History

2013-01-31 01:49:25 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var OptionsDefaulter = require("./OptionsDefaulter");
2013-01-31 01:49:25 +08:00
2013-02-15 21:16:18 +08:00
function WebpackOptionsDefaulter() {
2013-01-31 01:49:25 +08:00
OptionsDefaulter.call(this);
this.set("debug", false);
this.set("devtool", false);
this.set("cache", true);
2013-01-31 01:49:25 +08:00
this.set("context", process.cwd());
this.set("target", "web");
2013-01-31 01:49:25 +08:00
this.set("output", {});
this.set("node", {});
2013-01-31 01:49:25 +08:00
this.set("resolve", {});
this.set("resolveLoader", {});
this.set("module.unknownContextRequest", ".");
this.set("module.unknownContextRegExp", false);
this.set("module.unknownContextRecursive", true);
this.set("module.unknownContextCritical", true);
this.set("module.exprContextRequest", ".");
this.set("module.exprContextRegExp", false);
this.set("module.exprContextRecursive", true);
this.set("module.exprContextCritical", true);
this.set("module.wrappedContextRegExp", /.*/);
this.set("module.wrappedContextRecursive", true);
this.set("module.wrappedContextCritical", false);
2013-01-31 01:49:25 +08:00
this.set("output.libraryTarget", "var");
this.set("output.path", "");
this.set("output.sourceMapFilename", "[file].map[query]");
this.set("output.hotUpdateChunkFilename", "[id].[hash].hot-update.js");
this.set("output.hotUpdateMainFilename", "[hash].hot-update.json");
this.set("output.crossOriginLoading", false);
2013-05-21 17:08:08 +08:00
this.set("output.hashFunction", "md5");
this.set("output.hashDigest", "hex");
this.set("output.hashDigestLength", 20);
this.set("output.sourcePrefix", "\t");
this.set("output.devtoolLineToLine", false);
2013-01-31 01:49:25 +08:00
this.set("node.console", false);
this.set("node.process", true);
this.set("node.global", true);
this.set("node.Buffer", true);
this.set("node.setImmediate", true);
this.set("node.__filename", "mock");
this.set("node.__dirname", "mock");
2016-01-02 07:18:25 +08:00
this.set("resolve.modules", ["node_modules"])
this.set("resolve.mainFields", ["loader", "main"])
this.set("resolve.extensions", [".js", ".json"])
this.set("resolveLoader.extensions", [".js", ".json"])
this.set("resolveLoader.moduleExtensions", ["-loader"])
2013-01-31 01:49:25 +08:00
}
module.exports = WebpackOptionsDefaulter;
WebpackOptionsDefaulter.prototype = Object.create(OptionsDefaulter.prototype);
WebpackOptionsDefaulter.prototype.constructor = WebpackOptionsDefaulter;
WebpackOptionsDefaulter.prototype.process = function(options) {
OptionsDefaulter.prototype.process.call(this, options);
2016-01-02 07:18:25 +08:00
if(options.resolve.aliasFields === undefined) {
if(options.target === "web" || options.target === "webworker")
2016-01-02 07:18:25 +08:00
options.resolve.aliasFields = ["browser"];
}
2016-01-02 07:18:25 +08:00
if(options.resolve.mainFields === undefined) {
if(options.target === "web" || options.target === "webworker")
options.resolve.mainFields = ["browser", "web", "browserify", "main"];
else
options.resolve.mainFields = ["main"];
}
};