From e3f21afa451f8c8cb5743cd08fe3c3450ff5a75b Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Thu, 7 Oct 2021 16:47:35 +0000 Subject: Use *.tmpl file extension over *.template --- src/routes.test.ts | 10 ++-------- src/templates.test.ts | 4 ++-- src/util/config.ts | 4 ++-- 3 files changed, 6 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/routes.test.ts b/src/routes.test.ts index 151bf90..12210bf 100644 --- a/src/routes.test.ts +++ b/src/routes.test.ts @@ -116,13 +116,7 @@ describe("templates", () => { describe("GET /sh", () => { it("should return the sh file containing the curl command", async () => { await persistTemplate({ - inputFile: path.join( - __dirname, - "..", - "public", - "templates", - "sh.template" - ), + inputFile: path.join(__dirname, "..", "public", "templates", "sh.tmpl"), outputFile: path.join(HOST_DIR, "sh"), context: { TARGET_URL }, } as Template); @@ -142,7 +136,7 @@ describe("templates", () => { "..", "public", "templates", - "index.html.template" + "index.html.tmpl" ), outputFile: path.join(HOST_DIR, "index.html"), context: { TARGET_URL, CURL_HTTPS: "--https " }, diff --git a/src/templates.test.ts b/src/templates.test.ts index e434ce4..8fbf7e4 100644 --- a/src/templates.test.ts +++ b/src/templates.test.ts @@ -21,7 +21,7 @@ describe("processTemplate", () => { it("should process the template file with the given context", async () => { // Arrange - const template = genTemplate("ex.template"); + const template = genTemplate("ex.tmpl"); // Act const result = await processTemplate(template); @@ -34,7 +34,7 @@ describe("processTemplate", () => { it("should process the blank file", async () => { // Arrange - const template = genTemplate("blank.template"); + const template = genTemplate("blank.tmpl"); // Act const result = await processTemplate(template); diff --git a/src/util/config.ts b/src/util/config.ts index b98444c..c8639fb 100644 --- a/src/util/config.ts +++ b/src/util/config.ts @@ -79,12 +79,12 @@ export const handleStartup = async ( ); await persistTemplate({ - inputFile: path.join(publicDir, "templates", "sh.template"), + inputFile: path.join(publicDir, "templates", "sh.tmpl"), outputFile: path.join(hostDir, "sh"), context: { TARGET_URL: targetUrl }, } as Template); await persistTemplate({ - inputFile: path.join(publicDir, "templates", "index.html.template"), + inputFile: path.join(publicDir, "templates", "index.html.tmpl"), outputFile: path.join(hostDir, "index.html"), context: { TARGET_URL: targetUrl, -- cgit