We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Package This issue is related to the following monorepo package(s):
Description
There's a weird issue in a LinkedIn project where a file that isn't installed gets installed anyway.
let ignoredExtensions = new Set(['js', 'css']); eyeglass.assets.installer(function myInstaller( assetFile, assetUri, oldInstaller, cb ) { const assetExtension = assetUri.split('.').pop(); if ( ignoredExtensions.has(assetExtension) ) { cb(null, assetFile); } else { oldInstaller(assetFile, assetUri, cb); } });
Returning null should cause the asset to not be installed, but they are seeing that it is found after restarting the server.
null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Package
This issue is related to the following monorepo package(s):
Description
There's a weird issue in a LinkedIn project where a file that isn't installed gets installed anyway.
Returning
null
should cause the asset to not be installed, but they are seeing that it is found after restarting the server.The text was updated successfully, but these errors were encountered: