mirror of https://github.com/webpack/webpack.git
add missingDependencies
This commit is contained in:
parent
ada334b199
commit
c81107ae59
|
@ -260,6 +260,8 @@ class DotenvPlugin {
|
||||||
|
|
||||||
/** @type {string[] | undefined} */
|
/** @type {string[] | undefined} */
|
||||||
let fileDependenciesCache;
|
let fileDependenciesCache;
|
||||||
|
/** @type {string[] | undefined} */
|
||||||
|
let missingDependenciesCache;
|
||||||
|
|
||||||
compiler.hooks.beforeCompile.tapAsync(PLUGIN_NAME, (_params, callback) => {
|
compiler.hooks.beforeCompile.tapAsync(PLUGIN_NAME, (_params, callback) => {
|
||||||
const inputFileSystem = /** @type {InputFileSystem} */ (
|
const inputFileSystem = /** @type {InputFileSystem} */ (
|
||||||
|
@ -272,7 +274,7 @@ class DotenvPlugin {
|
||||||
inputFileSystem,
|
inputFileSystem,
|
||||||
mode,
|
mode,
|
||||||
context,
|
context,
|
||||||
(err, env, fileDependencies) => {
|
(err, env, fileDependencies, missingDependencies) => {
|
||||||
if (err) return callback(err);
|
if (err) return callback(err);
|
||||||
|
|
||||||
const definitions = envToDefinitions(env || {});
|
const definitions = envToDefinitions(env || {});
|
||||||
|
@ -281,6 +283,8 @@ class DotenvPlugin {
|
||||||
definePlugin.definitions = definitions;
|
definePlugin.definitions = definitions;
|
||||||
// update the file dependencies
|
// update the file dependencies
|
||||||
fileDependenciesCache = fileDependencies;
|
fileDependenciesCache = fileDependencies;
|
||||||
|
// update the missing dependencies
|
||||||
|
missingDependenciesCache = missingDependencies;
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
|
@ -289,6 +293,7 @@ class DotenvPlugin {
|
||||||
|
|
||||||
compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {
|
compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => {
|
||||||
compilation.fileDependencies.addAll(fileDependenciesCache || []);
|
compilation.fileDependencies.addAll(fileDependenciesCache || []);
|
||||||
|
compilation.missingDependencies.addAll(missingDependenciesCache || []);
|
||||||
});
|
});
|
||||||
|
|
||||||
definePlugin.apply(compiler);
|
definePlugin.apply(compiler);
|
||||||
|
@ -321,7 +326,7 @@ class DotenvPlugin {
|
||||||
* @param {InputFileSystem} fs the input file system
|
* @param {InputFileSystem} fs the input file system
|
||||||
* @param {string | undefined} mode the mode
|
* @param {string | undefined} mode the mode
|
||||||
* @param {string} context the compiler context
|
* @param {string} context the compiler context
|
||||||
* @param {(err: Error | null, env?: Record<string, string>, fileDependencies?: string[]) => void} callback callback function
|
* @param {(err: Error | null, env?: Record<string, string>, fileDependencies?: string[], missingDependencies?: string[]) => void} callback callback function
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
loadEnv(fs, mode, context, callback) {
|
loadEnv(fs, mode, context, callback) {
|
||||||
|
@ -353,17 +358,21 @@ class DotenvPlugin {
|
||||||
const envFiles = this.getEnvFilesForMode(fs, dir, mode);
|
const envFiles = this.getEnvFilesForMode(fs, dir, mode);
|
||||||
/** @type {string[]} */
|
/** @type {string[]} */
|
||||||
const fileDependencies = [];
|
const fileDependencies = [];
|
||||||
|
/** @type {string[]} */
|
||||||
|
const missingDependencies = [];
|
||||||
|
|
||||||
// Read all files
|
// Read all files
|
||||||
const readPromises = envFiles.map((filePath) =>
|
const readPromises = envFiles.map((filePath) =>
|
||||||
this.loadFile(fs, filePath).then(
|
this.loadFile(fs, filePath).then(
|
||||||
(content) => {
|
(content) => {
|
||||||
fileDependencies.push(filePath);
|
fileDependencies.push(filePath);
|
||||||
return { content, filePath };
|
return { content, filePath, exists: true };
|
||||||
},
|
},
|
||||||
() =>
|
() => {
|
||||||
// File doesn't exist, skip it (this is normal)
|
// File doesn't exist, add to missingDependencies (this is normal)
|
||||||
({ content: "", filePath })
|
missingDependencies.push(filePath);
|
||||||
|
return { content: "", filePath, exists: false };
|
||||||
|
}
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -403,7 +412,7 @@ class DotenvPlugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(null, env, fileDependencies);
|
callback(null, env, fileDependencies, missingDependencies);
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
callback(err);
|
callback(err);
|
||||||
|
|
Loading…
Reference in New Issue