diff --git a/src/plugin-sdk/root-alias.cjs b/src/plugin-sdk/root-alias.cjs index 85bc0a1fc29c..cfea3ea7fbf8 100644 --- a/src/plugin-sdk/root-alias.cjs +++ b/src/plugin-sdk/root-alias.cjs @@ -1,6 +1,6 @@ +// CommonJS root alias for plugin SDK and workspace package subpath loading. "use strict"; -// CommonJS root alias for plugin SDK and workspace package subpath loading. const path = require("node:path"); const fs = require("node:fs"); const os = require("node:os"); diff --git a/test/helpers/plugins/plugin-sdk-stub.cjs b/test/helpers/plugins/plugin-sdk-stub.cjs index a75b7ceb8638..4cc4a609f921 100644 --- a/test/helpers/plugins/plugin-sdk-stub.cjs +++ b/test/helpers/plugins/plugin-sdk-stub.cjs @@ -1,6 +1,5 @@ -"use strict"; - // Universal CommonJS plugin-sdk stub for tests that only need import shape compatibility. +"use strict"; const stub = new Proxy( function pluginSdkStub() {