Skip to content

Commit 3a428ac

Browse files
authored
fix: Algolia scraper import json syntax (#6226)
1 parent 4b29f22 commit 3a428ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/search/scrape-and-compare-algolia-index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import util from 'util'
2323
import { exec as execOriginal } from 'child_process'
2424
const exec = util.promisify(execOriginal)
2525
import { AlgoliaClient } from './algolia-client.mjs'
26-
import config from './config.json' assert { type: 'json' }
26+
import config from './config.json' with { type: 'json' }
2727

2828
// Required environment variables
2929
const API_KEY = process.env.ALGOLIA_API_KEY

0 commit comments

Comments
 (0)