Skip to content

Support webpack@4 and a few other things. #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
1 change: 1 addition & 0 deletions ExtractedModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ function ExtractedModule(identifier, originalModule, source, sourceMap, addtitio
this._sourceMap = sourceMap;
this._prevModules = prevModules;
this.addtitionalInformation = addtitionalInformation;
this.type = "css";
this.chunks = [];
}
module.exports = ExtractedModule;
Expand Down
84 changes: 44 additions & 40 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,14 @@ function ExtractTextPlugin(options) {
" allChunks: boolean\n" +
" disable: boolean\n");
}
if(isString(options)) {
if(typeof options === "string") {
options = { filename: options };
} else {
schemaTester(pluginSchema, options);
}
this.filename = options.filename || (process.env.NODE_ENV === 'development' ? '[name].css' : '[name].[contenthash].css');
this.filename = options.filename || (
!process.env.NODE_ENV || (process.env.NODE_ENV === 'development') ? '[name].css' : '[name].[contenthash].css'
);
this.id = options.id != null ? options.id : ++nextId;
this.options = {};
mergeOptions(this.options, options);
Expand All @@ -120,7 +122,7 @@ function ExtractTextPlugin(options) {
module.exports = ExtractTextPlugin;

function getLoaderObject(loader) {
if (isString(loader)) {
if (typeof loader === "string") {
return {loader: loader};
}
return loader;
Expand All @@ -134,18 +136,6 @@ function mergeOptions(a, b) {
return a;
}

function isString(a) {
return typeof a === "string";
}

function isFunction(a) {
return isType('Function', a);
}

function isType(type, obj) {
return Object.prototype.toString.call(obj) === '[object ' + type + ']';
}

ExtractTextPlugin.loader = function(options) {
return { loader: require.resolve("./loader"), options: options };
};
Expand Down Expand Up @@ -184,17 +174,17 @@ ExtractTextPlugin.prototype.extract = function(options) {
if(options.loader) {
console.warn('loader option has been deprecated - replace with "use"');
}
if(Array.isArray(options) || isString(options) || typeof options.options === "object" || typeof options.query === 'object') {
if(Array.isArray(options) || (typeof options === "string") || typeof options.options === "object" || typeof options.query === 'object') {
options = { loader: options };
} else {
schemaTester(loaderSchema, options);
}
var loader = options.use ||  options.loader;
var before = options.fallback || options.fallbackLoader || [];
if(isString(loader)) {
if(typeof loader === "string") {
loader = loader.split("!");
}
if(isString(before)) {
if(typeof before === "string") {
before = before.split("!");
} else if(!Array.isArray(before)) {
before = [before];
Expand Down Expand Up @@ -232,21 +222,14 @@ ExtractTextPlugin.prototype.apply = function(compiler) {
var id = this.id;
var extractedChunks, entryChunks, initialChunks;
compilation.plugin("optimize-tree", function(chunks, modules, callback) {
extractedChunks = chunks.map(function() {
return new Chunk();
extractedChunks = chunks.map(function(chunk) {
return new Chunk(chunk.name);
});
chunks.forEach(function(chunk, i) {
var extractedChunk = extractedChunks[i];
extractedChunk.index = i;
extractedChunk.originalChunk = chunk;
extractedChunk.name = chunk.name;
extractedChunk.entrypoints = chunk.entrypoints;
chunk.chunks.forEach(function(c) {
extractedChunk.addChunk(extractedChunks[chunks.indexOf(c)]);
});
chunk.parents.forEach(function(c) {
extractedChunk.addParent(extractedChunks[chunks.indexOf(c)]);
});
extractedChunk.originalChunk = chunk;
splitChunk(chunk, extractedChunk);
});
async.forEach(chunks, function(chunk, callback) {
var extractedChunk = extractedChunks[chunks.indexOf(chunk)];
Expand Down Expand Up @@ -365,32 +348,53 @@ function isChunk(chunk, error) {
function forEachChunkModule(chunk, cb) {
isChunk(chunk);

// webpack >= 4.x.x
if (chunk.modulesIterable) {
Array.from(chunk.modulesIterable, (x) => {
cb(x);
return x;
})
}
// webpack >= 3.x.x
if (typeof chunk.forEachModule === 'function') {
else if (typeof chunk.forEachModule === 'function') {
chunk.forEachModule(cb);
}
// webpack < 3.x.x
else {
// webpack < 3.x.x
chunk.modules.forEach(cb);
}

// Nothing better to return...
return chunk;
}

function getChunkModulesArray(chunk) {
isChunk(chunk);

var arr = [];

// webpack >= 4.x.x
if (chunk.modulesIterable) {
return Array.from(chunk.modulesIterable);
}
// webpack >= 3.x.x
if ( typeof chunk.mapModules === 'function' ) {
arr = chunk.mapModules();
else if ( typeof chunk.mapModules === 'function' ) {
return chunk.mapModules();
}
else {
// webpack < 3.x.x
arr = chunk.modules.slice();
return chunk.modules.slice();
}
}

return arr;
function splitChunk(chunk, extractedChunk) {
// webpack >= 4.x.x
if (typeof chunk.split === 'function') {
chunk.split(extractedChunk);
}
// webpack < 4.x.x
else {
extractedChunk.entrypoints = chunk.entrypoints;
chunk.chunks.forEach(function(c) {
extractedChunk.addChunk(extractedChunks[chunks.indexOf(c)]);
});
chunk.parents.forEach(function(c) {
extractedChunk.addParent(extractedChunks[chunks.indexOf(c)]);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You'll need to pass down extractedChunks to this function

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PAkerstrand Good catch. It would be nice if there was a way to smoke test this against older versions. Thanks!

});
}
}