From 7f991b2b0931ab7807afa5d1ec987d3d40e37dc9 Mon Sep 17 00:00:00 2001 From: Miel Truyen Date: Thu, 28 Mar 2024 23:48:40 +0100 Subject: [PATCH] chore: reorganize complicated hooks into their own files --- .drone.yml | 2 +- src/plugin/html.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index ba12433..49c91ba 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ trigger: - main steps: - name: build - image: node:18-alpine + image: node:20-alpine environment: NPM_TOKEN: from_secret: NPM_TOKEN diff --git a/src/plugin/html.ts b/src/plugin/html.ts index a012531..d0c17be 100644 --- a/src/plugin/html.ts +++ b/src/plugin/html.ts @@ -100,7 +100,7 @@ export function html(opts: { htmlFileNames = "[name].html", resolve = ()=>true, include = [ - '**/*.(html)',// html or handlebars + '**/*.(html)',// html ], exclude, } = opts;