fix(plugins): restore shared boundary sdk prep

This commit is contained in:
Vincent Koc
2026-04-07 13:06:22 +01:00
parent 76296a9d14
commit 4c97582d4b
2 changed files with 16 additions and 17 deletions

View File

@@ -206,7 +206,7 @@ describe("check-extension-package-tsc-boundary", () => {
).toBe("skipped 97 fresh plugin compiles\n");
});
it("treats a plugin compile as fresh only when its outputs are newer than plugin and package sdk inputs", () => {
it("treats a plugin compile as fresh only when its outputs are newer than plugin and shared sdk inputs", () => {
const { rootDir, extensionRoot } = createTempExtensionRoot();
const extensionSourcePath = path.join(extensionRoot, "index.ts");
const extensionTsconfigPath = path.join(extensionRoot, "tsconfig.json");
@@ -252,10 +252,6 @@ describe("check-extension-package-tsc-boundary", () => {
fs.utimesSync(rootSdkTypePath, new Date(4_000), new Date(4_000));
expect(isBoundaryCompileFresh("demo", { rootDir })).toBe(true);
fs.utimesSync(packageSdkTypePath, new Date(4_000), new Date(4_000));
expect(isBoundaryCompileFresh("demo", { rootDir })).toBe(false);
});