chore: pin dependencies and use native TypeScript
This commit is contained in:
@@ -2,9 +2,9 @@ import { chmodSync, existsSync, mkdirSync, readFileSync, rmSync, writeFileSync }
|
||||
import { tmpdir } from "os";
|
||||
import { join } from "path";
|
||||
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
||||
import { executeBashWithOperations } from "../src/core/bash-executor.js";
|
||||
import { type BashOperations, createBashTool, createLocalBashOperations } from "../src/core/tools/bash.js";
|
||||
import { computeEditsDiff } from "../src/core/tools/edit-diff.js";
|
||||
import { executeBashWithOperations } from "../src/core/bash-executor.ts";
|
||||
import { type BashOperations, createBashTool, createLocalBashOperations } from "../src/core/tools/bash.ts";
|
||||
import { computeEditsDiff } from "../src/core/tools/edit-diff.ts";
|
||||
import {
|
||||
createEditTool,
|
||||
createFindTool,
|
||||
@@ -12,8 +12,8 @@ import {
|
||||
createLsTool,
|
||||
createReadTool,
|
||||
createWriteTool,
|
||||
} from "../src/index.js";
|
||||
import * as shellModule from "../src/utils/shell.js";
|
||||
} from "../src/index.ts";
|
||||
import * as shellModule from "../src/utils/shell.ts";
|
||||
|
||||
const readTool = createReadTool(process.cwd());
|
||||
const writeTool = createWriteTool(process.cwd());
|
||||
|
||||
Reference in New Issue
Block a user