Skip to content

Commit bafa89c

Browse files
committed
fix: restore adapter local imports after rebase
1 parent 8e16e85 commit bafa89c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

clis/douyin/_shared/tos-upload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import * as crypto from 'node:crypto';
1010
import * as fs from 'node:fs';
1111
import * as path from 'node:path';
12-
import { CommandExecutionError } from '@jackwener/opencli/errors';
12+
import { CommandExecutionError } from '../../../src/errors.js';
1313
import { getUserOpenCliPath } from '../../../src/user-opencli-paths.js';
1414
import type { Sts2Credentials, TosUploadInfo } from './types.js';
1515

clis/linux-do/feed.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
import * as fs from 'node:fs';
1313
import * as os from 'node:os';
1414
import * as path from 'node:path';
15-
import { ArgumentError, AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
16-
import { cli, Strategy, type Arg, type CommandArgs } from '@jackwener/opencli/registry';
17-
import type { IPage } from '@jackwener/opencli/types';
15+
import { ArgumentError, AuthRequiredError, CommandExecutionError } from '../../src/errors.js';
16+
import { cli, Strategy, type Arg, type CommandArgs } from '../../src/registry.js';
17+
import type { IPage } from '../../src/types.js';
1818
import { getUserOpenCliPath } from '../../src/user-opencli-paths.js';
1919

2020
const LINUX_DO_HOME = 'https://linux.do';

0 commit comments

Comments
 (0)