refactor(core): rename app node modules (#34238)

This commit is contained in:
James Long 2026-06-27 12:29:21 -04:00 committed by GitHub
commit a76c6918d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
94 changed files with 317 additions and 329 deletions

View file

@ -1,16 +1,15 @@
import { $ } from "bun"
import { LayerNodeTree } from "@opencode-ai/core/effect/layer-node"
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
import { describe, expect } from "bun:test"
import fs from "fs/promises"
import path from "path"
import { Effect } from "effect"
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
import { Git } from "../../src/git"
import { tmpdir } from "../fixture/fixture"
import { testEffect } from "../lib/effect"
const weird = process.platform === "win32" ? "space file.txt" : "tab\tfile.txt"
const it = testEffect(LayerNodeTree.compile(LayerNode.group([Git.node])))
const it = testEffect(LayerNode.compile(LayerNode.group([Git.node])))
const scopedTmpdir = (options?: Parameters<typeof tmpdir>[0]) =>
Effect.acquireRelease(