Showing 10 of 10 total issues
Function build
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
AssetManifestGenerator.prototype.build = function() { var supportedTypes = this.supportedTypes; var generateURI = this.generateURI; var prepend = this.prepend; var filesToIgnore = this.filesToIgnore;
- Read upRead up
Function build
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
AssetManifestGenerator.prototype.build = function() { var supportedTypes = this.supportedTypes; var generateURI = this.generateURI; var prepend = this.prepend; var filesToIgnore = this.filesToIgnore;
Function css
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
export default nodeLoader(function css(uri) { return new RSVP.Promise((resolve, reject) => { if (document.querySelector(`link[href="${uri}"]`)) { return resolve(); }
- Read upRead up
Function generateAssetManifest
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function generateAssetManifest(tree, options) { options = options || {}; var bundlesLocation = options.bundlesLocation || 'bundles'; var filesToIgnore = options.filesToIgnore || [];
Function manifest
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
var manifest = walk(inputPath).reduce(function(manifest, entry) { var pathParts = entry.split('/'); var assetName = pathParts.pop(); var bundleName = pathParts.shift();
Function css
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export default nodeLoader(function css(uri) { return new RSVP.Promise((resolve, reject) => { if (document.querySelector(`link[href="${uri}"]`)) { return resolve(); }
Similar blocks of code found in 2 locations. Consider refactoring. Open
const script = createLoadElement('script', resolve, function(error) { if (this.parentNode) { this.parentNode.removeChild(this); } reject(error);
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
const link = createLoadElement('link', resolve, function(error) { if (this.parentNode) { this.parentNode.removeChild(this); } reject(error);
- Read upRead up
Function loadBundle
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
loadBundle(name, retryLoad) { const cachedPromise = this._getFromCache('bundle', name, retryLoad === RETRY_LOAD_SECRET); if (cachedPromise) { return cachedPromise;
- Read upRead up
Function compareAndIterate
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function compareAndIterate(initial, current, diffHandler) { if (initial.length < current.length) { for (let i = 0; i < current.length; i++) { let entry = current[i]; if (!has(initial, entry)) {
- Read upRead up