Skip to content

Commit

Permalink
refactor: .ts to .js extension
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Sep 25, 2024
1 parent 37c7f50 commit 6f7c5d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion multichain-testing/scripts/pod-readiness.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { execa } from 'execa';
import { sleep } from '../tools/sleep.ts';
import { sleep } from '../tools/sleep.js';

const checkPodsReadiness = async (): Promise<boolean> => {
const { stdout } = await execa('kubectl', ['get', 'pods']);
Expand Down
2 changes: 1 addition & 1 deletion packages/orchestration/src/exos/exo-interfaces.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { IBCConnectionID } from '@agoric/vats';
import type { Vow } from '@agoric/vow';
import type { IcaAccount } from '../cosmos-api.ts';
import type { IcaAccount } from '../cosmos-api.js';
import type { ICAChannelAddressOpts } from '../utils/address.js';
import type { ICQConnection } from './icq-connection-kit.js';

Expand Down

0 comments on commit 6f7c5d4

Please sign in to comment.