sindresorhus/refined-github



The issue has been closed
Webpack: Dynamic `runtimeValue` #2299
sharkykh posted onGitHub
(Meta, Suggestion)
It's undocumented, but you can use true
as the second parameter to re-evaluate the callback with every file change:
https://github.com/webpack/webpack/pull/8267
It would need to be something like this, though:
<details> <summary>Code changes</summary>
function getFeatures(): string[] {
return readdirSync(path.join(__dirname, 'source/features'))
.filter(filename => filename.endsWith('.tsx'))
.map(filename => filename.replace('.tsx', ''));
}
// Passing `true` as the second argument makes these values dynamic — so every file change will update their value.
// @ts-ignore
__featuresList__: webpack.DefinePlugin.runtimeValue(() => {
return JSON.stringify(getFeatures());
}, true),
// @ts-ignore
__featuresInfo__: webpack.DefinePlugin.runtimeValue(() => {
return JSON.stringify(getFeatures().map(parseFeatureDetails));
}, true),
</details>
But there is the question of performance - I don't know how much this affects it.