webpack/lib/NodeStuffPlugin.js

120 lines
3.4 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
2017-02-22 23:34:10 +08:00
"use strict";
const CachedConstDependency = require("./dependencies/CachedConstDependency");
2018-07-03 16:24:29 +08:00
const {
evaluateToString,
2019-05-22 19:36:26 +08:00
expressionIsUnsupported
} = require("./javascript/JavascriptParserHelpers");
const { relative } = require("./util/fs");
2018-07-27 21:57:03 +08:00
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
2018-11-03 04:05:46 +08:00
/** @typedef {import("./Compiler")} Compiler */
2018-07-27 21:57:03 +08:00
/** @typedef {import("./Dependency")} Dependency */
/** @typedef {import("./DependencyTemplates")} DependencyTemplates */
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
2015-07-13 06:20:09 +08:00
2017-02-22 23:34:10 +08:00
class NodeStuffPlugin {
constructor(options) {
this.options = options;
}
2015-07-13 06:20:09 +08:00
2018-11-03 04:05:46 +08:00
/**
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
2017-02-22 23:34:10 +08:00
apply(compiler) {
const options = this.options;
2018-02-25 09:00:20 +08:00
compiler.hooks.compilation.tap(
"NodeStuffPlugin",
(compilation, { normalModuleFactory }) => {
const handler = (parser, parserOptions) => {
if (parserOptions.node === false) return;
2017-02-22 23:34:10 +08:00
2018-02-25 09:00:20 +08:00
let localOptions = options;
if (parserOptions.node) {
localOptions = { ...localOptions, ...parserOptions.node };
}
2018-02-25 09:00:20 +08:00
const setModuleConstant = (expressionName, fn) => {
parser.hooks.expression
.for(expressionName)
.tap("NodeStuffPlugin", expr => {
const dep = new CachedConstDependency(
JSON.stringify(fn(parser.state.module)),
expr.range,
expressionName
2018-02-25 09:00:20 +08:00
);
dep.loc = expr.loc;
parser.state.module.addPresentationalDependency(dep);
2018-02-25 09:00:20 +08:00
return true;
});
};
const setConstant = (expressionName, value) =>
setModuleConstant(expressionName, () => value);
2018-02-25 09:00:20 +08:00
const context = compiler.context;
if (localOptions.__filename) {
if (localOptions.__filename === "mock") {
setConstant("__filename", "/index.js");
} else {
setModuleConstant("__filename", module =>
relative(compiler.inputFileSystem, context, module.resource)
);
}
parser.hooks.evaluateIdentifier
.for("__filename")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
const resource = parser.state.module.resource;
const i = resource.indexOf("?");
2019-05-20 20:46:31 +08:00
return evaluateToString(
i < 0 ? resource : resource.substr(0, i)
)(expr);
});
2018-02-25 09:00:20 +08:00
}
if (localOptions.__dirname) {
if (localOptions.__dirname === "mock") {
setConstant("__dirname", "/");
} else {
setModuleConstant("__dirname", module =>
relative(compiler.inputFileSystem, context, module.context)
2018-07-03 16:24:29 +08:00
);
}
parser.hooks.evaluateIdentifier
.for("__dirname")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
2019-05-20 20:46:31 +08:00
return evaluateToString(parser.state.module.context)(expr);
});
2018-02-25 09:00:20 +08:00
}
parser.hooks.expression
.for("require.extensions")
.tap(
"NodeStuffPlugin",
2018-07-03 16:24:29 +08:00
expressionIsUnsupported(
2018-02-25 09:00:20 +08:00
parser,
"require.extensions is not supported by webpack. Use a loader instead."
)
);
2017-11-08 18:32:05 +08:00
};
2018-02-25 09:00:20 +08:00
normalModuleFactory.hooks.parser
.for("javascript/auto")
.tap("NodeStuffPlugin", handler);
normalModuleFactory.hooks.parser
.for("javascript/dynamic")
.tap("NodeStuffPlugin", handler);
}
);
2017-02-22 23:34:10 +08:00
}
}
2018-07-27 21:57:03 +08:00
2017-02-22 23:34:10 +08:00
module.exports = NodeStuffPlugin;