function isValidDirectory()

in src/update-version.js [160:168]


function isValidDirectory(path) {
    if (path.indexOf('node_modules') >= 0 || path.indexOf('bundle') >= 0 || path.indexOf('dist') >= 0
        || path.indexOf('inlineDist') >= 0 || path.indexOf('inlineSrc') >= 0
        || path.indexOf('gulps') >= 0 || path.indexOf('UpgradeAudit') >= 0) {
        return false;
    }

    return true;
}