diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures.spec.ts b/packages/@lwc/engine-server/src/__tests__/fixtures.spec.ts index 14a05b484a..68c0ea4b15 100755 --- a/packages/@lwc/engine-server/src/__tests__/fixtures.spec.ts +++ b/packages/@lwc/engine-server/src/__tests__/fixtures.spec.ts @@ -122,7 +122,7 @@ async function compileFixture({ function testFixtures(options?: RollupLwcOptions) { testFixtureDir( { - root: path.resolve(__dirname, 'fixtures'), + root: path.resolve(__dirname, '../../../ssr-compiler/src/__tests__/fixtures'), ssrVersion: 1, pattern: '**/config.json', }, diff --git a/packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts b/packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts index 559a30ae3d..4cdfa6051d 100644 --- a/packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts +++ b/packages/@lwc/ssr-compiler/src/__tests__/fixtures.spec.ts @@ -64,7 +64,7 @@ async function compileFixture({ experimentalComplexExpressions: boolean | undefined; }) { const modulesDir = path.resolve(dirname, './modules'); - const outputFile = path.resolve(dirname, './dist/compiled-experimental-ssr.js'); + const outputFile = path.resolve(dirname, './dist/compiled-ssr.js'); const input = 'virtual/fixture/test.js'; const bundle = await rollup({ @@ -106,7 +106,7 @@ async function compileFixture({ describe.concurrent('fixtures', () => { testFixtureDir( { - root: path.resolve(__dirname, '../../../engine-server/src/__tests__/fixtures'), + root: path.resolve(__dirname, 'fixtures'), pattern: '**/config.json', ssrVersion: 2, // TODO [#4815]: enable all SSR v2 tests diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-at-end/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/comments-then-element/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each-with-rendered-item/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-for-each/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep-iterator/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/deep2/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/emptier/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty1/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty2/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/empty3/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping-single/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/html-escaping/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/if-as-sibling/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/just-comments/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/lwcIf-as-sibling/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-dynamic/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty-literals-outside/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty1/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty2/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/nonempty3/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-off/text-comment-text-comment/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/comments-then-element/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier-with-text-comment-text/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/emptier/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/empty copy/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/just-comments/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments2/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/adjacent-text-nodes/preserve-comments-on/preserve-comments3/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-getter/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter-getter/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/decorated-setter/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/superChild/superChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/superChild/superChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/inherited/modules/x/superChild/superChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/inherited/modules/x/superChild/superChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/api/property/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/api/property/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/parent-child/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-and-class-modify/simple/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria-modify/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-aria/static/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean-expr/modules/x/attribute-boolean-expr/attribute-boolean-expr.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-boolean/modules/x/attribute-boolean/attribute-boolean.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/array/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/child/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/component/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/object/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/unstyled/static/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/child/child.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/child/child.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-child/static/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/dynamic/modules/x/parent/parent.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles-only-in-parent/static/modules/x/parent/parent.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/child/child.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/grandchild/grandchild.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/dynamic/modules/x/parent/parent.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/child/child.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-class/with-scoped-styles/static/modules/x/parent/parent.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/attribute-component-aria/attribute-component-aria.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-aria/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/attribute-component-global-html/attribute-component-global-html.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-component-global-html/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-complex/modules/x/attribute-dynamic-complex/attribute-dynamic-complex.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-escape/modules/x/attribute-dynamic-escape/attribute-dynamic-escape.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic-with-scoped-css/modules/x/attribute-dynamic-with-scoped-css/attribute-dynamic-with-scoped-css.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-dynamic/modules/x/attribute-dynamic/attribute-dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-empty-string/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/undeclared/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/with-@api/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api-values/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/as-component-prop/without-@api/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/basic/modules/x/attribute-global-html/attribute-global-html.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/draggable/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/hidden/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/spellcheck/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-global-html/tabindex/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-live-bindings/modules/x/attribute-live-bindings/attribute-live-bindings.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-modify-uppercase/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-namespace/modules/x/attribute-namespace/attribute-namespace.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-null/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-null/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-scoped-id/modules/x/scoped-id/scoped-id.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-static/modules/x/attribute-static/attribute-static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/attribute-style/attribute-style.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/basic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/basic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/grandchild/grandchild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attribute-style/dynamic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/attributes-aria/modules/x/attributes-aria/attributes-aria.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/barrel.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/barrel.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/barrel.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/barrel.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all-alias/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/barrel.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/barrel.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/barrel.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/barrel.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-all/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/barrel.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/barrel.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/barrel.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/barrel.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/barrel-lwc-exports/export-named/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-basic/modules/x/comments-basic/comments-basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-foreach/modules/x/comments-foreach/comments-foreach.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-if/modules/x/comments-if/comments-if.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-slot/modules/x/comments-slot/comments-slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve-off/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/comments-text-preserve/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/component/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/component/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/computed/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/computed/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/computed/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/computed/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/computed/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/computed/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/computed/modules/x/computed/computed.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/modules/x/computed/computed.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/computed/modules/x/computed/computed.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/modules/x/computed/computed.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/computed/modules/x/computed/computed.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/modules/x/computed/computed.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/computed/modules/x/computed/computed.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/computed/modules/x/computed/computed.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/middle/middle.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/middle/middle.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/middle/middle.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/middle/middle.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/middle/middle.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/middle/middle.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/middle/middle.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/middle/middle.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-deep/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-deep/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-installation-on-non-element/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-installation-on-non-element/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/modules/x/providerNested/providerNested.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-nested/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-nested/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-no-provider/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-no-provider/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/middle/middle.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-shadowed/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-shadowed/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-method/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-method/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple-setter/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple-setter/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-simple/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-simple/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/modules/x/root/root.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/light/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/light/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/modules/x/root/root.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/scoped/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/scoped/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/consumer/consumer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/provider/provider.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/modules/x/root/root.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/context-slotted/shadow/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/context-slotted/shadow/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/custom-styles-with-newlines/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/decorator-api/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/deeply-nested/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/deeply-nested/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/delegates-focus/modules/x/delegates-focus/delegates-focus.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/hello/hello.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/hello/hello.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/hello/hello.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/hello/hello.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/hello/hello.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/hello/hello.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/hello/hello.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/hello/hello.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/directive-external/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/directive-external/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/duplicate-slots-in-template/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/basic/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor-function/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/invalid-ctor/modules/x/dynamic-invalid-ctor/dynamic-invalid-ctor.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/mixed/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/no-ctor/modules/x/dynamic-no-ctor/dynamic-no-ctor.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/scoped-styles/modules/x/scopedStyle/scopedStyle.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light-fallback/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/light/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/scoped-slots/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-components/slots/shadow/modules/x/static/static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/dynamic/dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/fake/fake.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/fake/fake.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-imports/basic/modules/x/fake/fake.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-imports/basic/modules/x/fake/fake.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/dynamic-slots/modules/x/slots/slots.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/empty-text-with-comments-non-static-optimized/modules/x/comments-text/comments-text.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/light/light.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/component-as-default/modules/x/shadow/shadow.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-named/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-class-unnamed/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/exports/default-identifier/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/control/control.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/control/control.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/control/control.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/control/control.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/control/control.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/control/control.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/face-callback/modules/face/control/control.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/face-callback/modules/face/control/control.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/basic/modules/x/for-each-block/for-each-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested-complex/modules/x/for-each-nested-complex/for-each-nested-complex.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/child-nested/modules/x/for-each-child-nested/for-each-child-nested.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/complex/modules/x/for-each-block/for-each-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/item-and-index/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested-no-index/modules/x/for-each-nested-no-index/for-each-nested-no-index.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/nested/modules/x/for-each-nested/for-each-nested.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/no-index/modules/x/for-each-block/for-each-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/for-each-block/static-content/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/modules/x/getter-class-list/getter-class-list.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/modules/x/getter-class-list/getter-class-list.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-modify/modules/x/getter-class-list/getter-class-list.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-modify/modules/x/getter-class-list/getter-class-list.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/modules/x/getter-class-list-noop/getter-class-list-noop.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/modules/x/getter-class-list-noop/getter-class-list-noop.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list-noop/modules/x/getter-class-list-noop/getter-class-list-noop.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list-noop/modules/x/getter-class-list-noop/getter-class-list-noop.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/modules/x/getter-class-list/getter-class-list.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/modules/x/getter-class-list/getter-class-list.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-class-list/modules/x/getter-class-list/getter-class-list.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-class-list/modules/x/getter-class-list/getter-class-list.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/getter-is-connected/modules/x/getter-is-connected/getter-is-connected.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/global-html-attributes/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-connected-callback/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/template.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/template.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/template.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/template.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/host-mutate-in-render/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-block/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-block/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-block/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-block/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-block/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-block/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-block/modules/x/if-block/if-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/conditionalSlotContent/conditionalSlotContent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/if-conditional-slot-content/if-conditional-slot-content.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot-content/modules/x/slotted/slotted.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/if-conditional-slot/if-conditional-slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-conditional-slot/modules/x/slotted/slotted.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/customElementChild/customElementChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-custom-element-child/modules/x/if-custom-element-child/if-custom-element-child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/elementChild/elementChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-element-child/modules/x/if-element-child/if-element-child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-false/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/if-true-if-true/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/imports.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/imports.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/imports.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/imports.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/wire-adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/wire-adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/import-lwc-from-helper/wire-adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/import-lwc-from-helper/wire-adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-div/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-external/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/inner-lwc/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-div/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-external/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/inner-outer-html/outer-lwc/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/basic/modules/x/iterator-block/iterator-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/missing-value/modules/x/iterator-block/iterator-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/multiple/modules/x/iterator-block/iterator-block.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/iterator-block/variables/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/boolean-true/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/dynamic/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/empty-string/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/invalid-string/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-false-uppercase/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/correct-tag-attr-pair/string-true-uppercase/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/dynamic/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static-on-component/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/default-def-html-attributes/static/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/dynamic/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/incorrect-tag-attr-pair/static/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/dynamic/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/input/static/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/known-boolean-attributes/spellcheck/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lifecycle-hooks/modules/x/lifecycle-hooks/lifecycle-hooks.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/one/one.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/other.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/other.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/other.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/other.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-multiple/modules/x/two/two.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles-render/modules/x/basic/template.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-scoped-styles/modules/x/basic/basic.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom-styles-dir-host/modules/x/basic/basic.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/light-dom/modules/x/basic/basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/light-dom/modules/x/basic/basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dom-manual/modules/x/lwc-dom-manual/lwc-dom-manual.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/lwc-dynamic/lwc-dynamic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-dynamic/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-complex/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else-empty/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if-else/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else-if/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-else/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if-no-content/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-if/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-if/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-inner-html/modules/x/lwc-inner-html/lwc-inner-html.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/lwc-on/modules/x/lwc-on/lwc-on.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-get-attribute/modules/x/method-get-attribute/method-get-attribute.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/modules/x/method-remove-attribute/method-remove-attribute.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/modules/x/method-remove-attribute/method-remove-attribute.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-remove-attribute/modules/x/method-remove-attribute/method-remove-attribute.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-remove-attribute/modules/x/method-remove-attribute/method-remove-attribute.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/modules/x/method-set-attribute/method-set-attribute.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/modules/x/method-set-attribute/method-set-attribute.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/method-set-attribute/modules/x/method-set-attribute/method-set-attribute.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/method-set-attribute/modules/x/method-set-attribute/method-set-attribute.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/modules/x/methods-noop/methods-noop.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/modules/x/methods-noop/methods-noop.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-noop/modules/x/methods-noop/methods-noop.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-noop/modules/x/methods-noop/methods-noop.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/modules/x/methods-unsupported/methods-unsupported.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/modules/x/methods-unsupported/methods-unsupported.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/methods-unsupported/modules/x/methods-unsupported/methods-unsupported.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/methods-unsupported/modules/x/methods-unsupported/methods-unsupported.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-basic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-child/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/deepChild/deepChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-deep-child/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-boundary-protection-slotted/modules/x/slotted/slotted.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-dup-styles/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-template/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-template/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-template/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-template/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-template/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-template/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/no-template/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/no-template/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/no-template/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/notLightningElement/notLightningElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/notLightningElement/notLightningElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/non-lwc-class/modules/x/notLightningElement/notLightningElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/non-lwc-class/modules/x/notLightningElement/notLightningElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties-template/modules/x/overwrite-properties-template/overwrite-properties-template.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/overwrite-properties/modules/x/overwrite-properties/overwrite-properties.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/parent-child-connected-callback/modules/x/slotted/slotted.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/modules/x/dontDoItStupid/dontDoItStupid.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/modules/x/dontDoItStupid/dontDoItStupid.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/prohibited-variable-name/modules/x/dontDoItStupid/dontDoItStupid.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/prohibited-variable-name/modules/x/dontDoItStupid/dontDoItStupid.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/basic/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/dynamic-child/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/function/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/read-only-props/pseudo-attribute/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/attr-to-prop/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reflection/prop-to-attr/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/rehydration/modules/x/rehydration/rehydration.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-bad-value/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-bad-value/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-correct-tags/modules/x/elements/elements.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-dynamic-value/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-light-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/default-template-shadow-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-default-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/light-template-shadow-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-default-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-mode-mismatch/shadow-template-light-component/modules/x/test/test.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-undefined/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-undefined/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/render-with-unused-default-template/modules/x/component/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reordered-duplicate-nonexistent-slots/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/reserved-keywords/modules/x/cmp/cmp.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/component.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token-extended/modules/x/component/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token-extended/modules/x/component/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/.skip b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/.skip similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/.skip rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/.skip diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/component.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/component.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scope-token/modules/x/component/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scope-token/modules/x/component/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/advanced/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicChild/basicChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/basic/modules/x/basicParent/basicParent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexChild/complexChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/complex/modules/x/complexParent/complexParent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names-attr-value/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep-different-variable-names/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/deep/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/default-slot/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/expression/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/childWithForEach/childWithForEach.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/for-each/modules/x/parentOfChildWithForEach/parentOfChildWithForEach.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-2/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside-3/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-inside/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside-2/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/mixed-with-light-dom-slots-outside/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/named-slot/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/same-variable-used-outside/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-slots/undefined-var-name-in-child-and-scoped-slot/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/scoped-styles-with-existing-class/modules/x/component/component.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/shadow-dom-styles-dir-host/modules/x/basic/basic.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/leaf/leaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/lightContainer/lightContainer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotChild/scopedSlotChild.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/scoped-slots/modules/x/scopedSlotParent/scopedSlotParent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/leaf/leaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling-component/modules/x/slot/slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/leaf/leaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/dangling/modules/x/slot/slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/leaf/leaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/light/modules/x/slot/slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightLeaf/lightLeaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/lightParent/lightParent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowLeaf/shadowLeaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/mixed/modules/x/shadowParent/shadowParent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/container/container.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/leaf/leaf.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-forwarding/slots/shadow/modules/x/slot/slot.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/another/another.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/another/another.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/ifTrue/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/another/another.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/another/another.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/advanced/lwcIf/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/element/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/external/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/ifTrue/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slot/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf-inside-slotted-element/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/lwcIf/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/ifTrue/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/nested-elements/lwcIf/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if-as-sibling/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/deep/deep.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/deep/deep.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/if/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf-as-sibling/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/deep/deep.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/deep/deep.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slot-not-at-top-level/with-adjacent-text-nodes/lwcIf/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotchange/modules/x/slotchange/slotchange.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/fallback/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/implicit-no-template/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/light/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-basic/slotted/shadow/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-fallback/modules/x/slots-fallback/slots-fallback.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/inner/inner.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/inner/inner.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/inner/inner.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/inner/inner.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/innerTemplateFn.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/innerTemplateFn.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/innerTemplateFn.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/innerTemplateFn.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-light-evil-template-as-prop/modules/x/outer/outer.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-nested/modules/x/slots-nested/slots-nested.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots-unknown/modules/x/slots-unknown/slots-unknown.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/slots/slots.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/slots/slots.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/slots/slots.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/slots/slots.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/slots/slots.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/slots/slots.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slots/modules/x/slots/slots.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slots/modules/x/slots/slots.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/another/another.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/receiver/receiver.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/slotted-content-nested/modules/x/slots/slots.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/ssr-internals/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/ssr-internals/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/dazzling.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/snazzy.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/snazzy.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/snazzy.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/snazzy.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-dynamic-render/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/snazzy.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/snazzy.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/snazzy.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/snazzy.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-class/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/snazzy.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/snazzy.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/snazzy.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/snazzy.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped-with-dynamic-class/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/snazzy.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/snazzy.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/snazzy.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/snazzy.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/scoped-and-unscoped/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-class/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only-with-dynamic-class/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-only/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles-and-class/modules/x/stylish/stylish.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/glamorous.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/glamorous.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/glamorous.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/glamorous.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.scoped.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.scoped.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.scoped.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/static-stylesheets/unscoped-with-scoped-template-styles/modules/x/stylish/stylish.scoped.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-class-whitespace/modules/x/foo/foo.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/index.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/index.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/index.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/index.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-dedupe-with-prefix/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/style-newline/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/style-newline/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-multiple-levels/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-close-tag/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-trailing-open-tag/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-invalid-unclosed-open-tag/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-safe/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-escaping-unsafe/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-keyframes/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/child/child.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/child/child.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/shared.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/shared.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles-shared/modules/x/shared.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles-shared/modules/x/shared.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.css b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.css similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.css rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.css diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/styles/modules/x/styles/styles.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/styles/modules/x/styles/styles.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyMixin/fancyMixin.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyMixin/fancyMixin.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/fancy/modules/x/fancyMixin/fancyMixin.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/fancy/modules/x/fancyMixin/fancyMixin.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/fancyMixin/fancyMixin.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/fancyMixin/fancyMixin.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/mixin/modules/x/fancyMixin/fancyMixin.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/mixin/modules/x/fancyMixin/fancyMixin.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/no-template-in-superclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/mixinSuperclass/mixinSuperclass.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/mixinSuperclass/mixinSuperclass.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/mixinSuperclass/mixinSuperclass.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/mixinSuperclass/mixinSuperclass.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/notLwcClass/notLwcClass.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/notLwcClass/notLwcClass.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/notLwcClass/notLwcClass.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/notLwcClass/notLwcClass.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/superless/superless.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/superless/superless.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/not-superclass/modules/x/superless/superless.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/not-superclass/modules/x/superless/superless.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/override/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/no-template-in-subclass/modules/x/fancyElement/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/sub.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/sub.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/sub.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/component/sub.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/render-in-subclass/modules/x/fancyElement/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/template-in-subclass/modules/x/fancyElement/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-subclass/modules/x/fancyElement/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/render-in-superclass/unused-default-in-superclass/modules/x/fancyElement/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/basic/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/sub.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/sub.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/sub.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/sub.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/template.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/template.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/template.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/sub/template.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/render-in-subclass/modules/x/super/super.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/sub/sub.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/sub/sub.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/sub/sub.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/sub/sub.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/super/super.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/custom.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/custom.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/custom.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/custom.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/superSuper.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/superSuper.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/superSuper.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-render-in-super-super/modules/x/superSuper/superSuper.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/sub/sub.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/sub/sub.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/sub/sub.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/sub/sub.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/custom.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/custom.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/custom.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/custom.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/super.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/super.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/super.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/super/super.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super-render-in-super/modules/x/superSuper/superSuper.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/sub/sub.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/sub/sub.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/sub/sub.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/sub/sub.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/super/super.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/super/super.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/super/super.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/super/super.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/template-in-superclass/template-in-super-super/modules/x/superSuper/superSuper.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/superclass/with-props/modules/x/fancyElement/fancyElement.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/svgs/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/svgs/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/svgs/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/svgs/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/svgs/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/svgs/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/svgs/modules/x/svgs/svgs.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/tag-name/modules/x/tag-name/tag-name.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-complex/modules/x/text-interpolation/text-interpolation.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation-escape/modules/x/text-interpolation-escape/text-interpolation-escape.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-interpolation/modules/x/text-interpolation/text-interpolation.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-static/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-static/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-static/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-static/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-static/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-static/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/text-static/modules/x/text-static/text-static.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/this-dot-host-element/modules/x/this-dot-host-element/this-dot-host-element.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/track-revoked-proxy-fails/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/tmpl.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/tmpl.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/unused-imported-template/modules/x/component/tmpl.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/unused-imported-template/modules/x/component/tmpl.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/very-deeply-nested-each/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/component.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/adapter-lifecycle/modules/x/component/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/basic/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/get-set/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/method-prop/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/collision/prop-method/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/config/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/config/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/ctor-on-adapter-prop/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/deep-reference/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected-ssr.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected-ssr.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected-ssr.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected-ssr.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/computed-prop-updates-incorrectly/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-getter/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-method/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-on-computed-setter/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/.skip b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/.skip similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/.skip rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/.skip diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-colliding-prop-then-method/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-expression/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-let-variable/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-regexp-literal/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-computed-prop-is-template-literal/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-using-2-wired-decorators/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-method-is-combined-with-@api/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@api/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/errors/throws-when-wired-property-is-combined-with-@track/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/field/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/field/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/get-set/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/imported-member/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/parent/parent.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/method/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/invocation-sequence/prop/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/method/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-field/modules/x/wire/wire.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/config.json b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/config.json similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/config.json rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/config.json diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/error-ssr.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/error-ssr.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/error-ssr.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/error-ssr.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/error.txt b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/error.txt similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/error.txt rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/error.txt diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/expected.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/expected.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/expected.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/expected.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/adapter/adapter.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/adapter/adapter.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/adapter/adapter.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/adapter/adapter.js diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.html b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.html similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.html rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.html diff --git a/packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.js b/packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.js similarity index 100% rename from packages/@lwc/engine-server/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.js rename to packages/@lwc/ssr-compiler/src/__tests__/fixtures/wire/static-method/modules/x/wire/wire.js