File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -224,6 +224,6 @@ jobs:
224224 configPath : ' adev/firebase.json'
225225 distDir : ' dist/bin/adev/dist'
226226 - name : Update Algolia synonym record
227- run : pnpm tsx adev/scripts/synonyms/update-synonyms.mts
227+ run : node adev/scripts/synonyms/update-synonyms.mts
228228 env :
229229 ALGOLIA_KEY : ${{ secrets.ALGOLIA_SYNONYM_MANAGER }}
Original file line number Diff line number Diff line change 66 * found in the LICENSE file at https://angular.dev/license
77 */
88
9- import { SynonymHit } from 'algoliasearch' ;
9+ import { type SynonymHit } from 'algoliasearch' ;
1010
1111/**
1212 * List of synonyms to upload to algolia.
Original file line number Diff line number Diff line change 1+ {
2+ "compileOnSave" : false ,
3+ "compilerOptions" : {
4+ "forceConsistentCasingInFileNames" : true ,
5+ "strict" : true ,
6+ "noImplicitOverride" : true ,
7+ "noPropertyAccessFromIndexSignature" : true ,
8+ "noImplicitReturns" : true ,
9+ "noFallthroughCasesInSwitch" : true ,
10+ "sourceMap" : true ,
11+ "declaration" : false ,
12+ "moduleResolution" : " bundler" ,
13+ "preserveSymlinks" : true ,
14+ "importHelpers" : true ,
15+ "target" : " ES2022" ,
16+ "module" : " ES2022" ,
17+ "allowImportingTsExtensions" : true ,
18+ "lib" : [" ES2022" ],
19+ "types" : [],
20+ "skipLibCheck" : true
21+ }
22+ }
Original file line number Diff line number Diff line change 77 */
88
99import { algoliasearch } from 'algoliasearch' ;
10- import synonyms from './algolia-synonyms.mjs ' ;
10+ import synonyms from './algolia-synonyms.mts ' ;
1111
1212/** The name of the index being updated. */
1313const INDEX_NAME = 'angular_v17' ;
You can’t perform that action at this time.
0 commit comments