From 27f3ff2c710dee3cd501cd32b9d90c2f20507c49 Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Tue, 18 Oct 2022 10:12:04 +0200 Subject: [PATCH] move templates --- code/lib/builder-webpack5/src/preview/iframe-webpack.config.ts | 2 +- .../{src/preview => templates}/virtualModuleEntry.template.js | 0 .../{src/preview => templates}/virtualModuleStory.template.js | 0 code/lib/builder-webpack5/tsconfig.json | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename code/lib/builder-webpack5/{src/preview => templates}/virtualModuleEntry.template.js (100%) rename code/lib/builder-webpack5/{src/preview => templates}/virtualModuleStory.template.js (100%) diff --git a/code/lib/builder-webpack5/src/preview/iframe-webpack.config.ts b/code/lib/builder-webpack5/src/preview/iframe-webpack.config.ts index cd6416b9c03..e2f154e6180 100644 --- a/code/lib/builder-webpack5/src/preview/iframe-webpack.config.ts +++ b/code/lib/builder-webpack5/src/preview/iframe-webpack.config.ts @@ -143,7 +143,7 @@ export default async ( }); if (stories.length > 0) { const storyTemplate = await readTemplate( - path.join(__dirname, 'virtualModuleStory.template.js') + path.join(__dirname, '..', '..', 'templates', 'virtualModuleStory.template.js') ); // NOTE: this file has a `.cjs` extension as it is a CJS file (from `dist/cjs`) and runs // in the user's webpack mode, which may be strict about the use of require/import. diff --git a/code/lib/builder-webpack5/src/preview/virtualModuleEntry.template.js b/code/lib/builder-webpack5/templates/virtualModuleEntry.template.js similarity index 100% rename from code/lib/builder-webpack5/src/preview/virtualModuleEntry.template.js rename to code/lib/builder-webpack5/templates/virtualModuleEntry.template.js diff --git a/code/lib/builder-webpack5/src/preview/virtualModuleStory.template.js b/code/lib/builder-webpack5/templates/virtualModuleStory.template.js similarity index 100% rename from code/lib/builder-webpack5/src/preview/virtualModuleStory.template.js rename to code/lib/builder-webpack5/templates/virtualModuleStory.template.js diff --git a/code/lib/builder-webpack5/tsconfig.json b/code/lib/builder-webpack5/tsconfig.json index 314889c338e..de98a048bdd 100644 --- a/code/lib/builder-webpack5/tsconfig.json +++ b/code/lib/builder-webpack5/tsconfig.json @@ -4,6 +4,6 @@ "strict": true, "skipLibCheck": true }, - "include": ["src/**/*", "typings.d.ts"], + "include": ["src/**/*", "typings.d.ts", "templates/virtualModuleEntry.template.js"], "exclude": ["src/**.test.ts"] }