/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/scripts/synonyms/algolia-synonyms.mts
25 строк
625 B
Joey Perrott
ci: update algolia synonym updater to use node directly rather than tsx
14 янв 2026, 20:26
14 янв 2026, 20:26
3f13db8
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {type SynonymHit} from 'algoliasearch'; /** * List of synonyms to upload to algolia. * * More information about synonyms can be found here: * https://www.algolia.com/doc/guides/managing-results/optimize-search-results/adding-synonyms/ */ const synonyms: SynonymHit[] = [ { objectID: 'di-synonyms', type: 'synonym', synonyms: ['DI', 'dependency injection'], }, ]; export default synonyms;