Skip to content

Commit 9d28444

Browse files
chore: Use with -- assert is deprecated in modern v8
1 parent 75fd9c6 commit 9d28444

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/validateJSONRecipients.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { recipientDetailSchema, SUPPORTED_LIT_NETWORKS } from 'lit-task-auto-top
22
// eslint-disable-next-line import/no-extraneous-dependencies
33
import { z } from 'zod';
44

5-
import rawDatilTestRecipientList from '../worker/recipient_list_datil-test.json' assert { type: 'json' };
6-
import rawDatilRecipientList from '../worker/recipient_list_datil.json' assert { type: 'json' };
5+
import rawDatilTestRecipientList from '../worker/recipient_list_datil-test.json' with { type: 'json' };
6+
import rawDatilRecipientList from '../worker/recipient_list_datil.json' with { type: 'json' };
77

88
const recipientListSchema = z.array(recipientDetailSchema);
99

0 commit comments

Comments
 (0)