refactor(docs-infra): move auto-link filters to dedicated directory (#31051)

These filters have generic names (e.g. `filterPipes`), which do not make
their purpose obvious. Moving them to a dedicated `auto-link-filters`
directory should help with that.

PR Close #31051
This commit is contained in:
George Kalpakas 2019-06-14 14:39:13 +03:00 committed by Kara Erickson
parent c6b180380a
commit c34abf2cbc
7 changed files with 3 additions and 3 deletions

View File

@ -36,10 +36,10 @@ module.exports = new Package('angular-base', [
.factory('packageInfo', function() { return require(path.resolve(PROJECT_ROOT, 'package.json')); })
.factory(require('./readers/json'))
.factory(require('./services/copyFolder'))
.factory(require('./services/filterPipes'))
.factory(require('./services/filterAmbiguousDirectiveAliases'))
.factory(require('./services/ignoreHttpInUrls'))
.factory(require('./services/getImageDimensions'))
.factory(require('./services/auto-link-filters/filterPipes'))
.factory(require('./services/auto-link-filters/filterAmbiguousDirectiveAliases'))
.factory(require('./services/auto-link-filters/ignoreHttpInUrls'))
.factory(require('./post-processors/add-image-dimensions'))
.factory(require('./post-processors/auto-link-code'))