chore: reorganize complicated hooks into their own files
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Miel Truyen 2024-03-28 23:48:40 +01:00
parent 2d4d097560
commit 7f991b2b09
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ trigger:
- main - main
steps: steps:
- name: build - name: build
image: node:18-alpine image: node:20-alpine
environment: environment:
NPM_TOKEN: NPM_TOKEN:
from_secret: NPM_TOKEN from_secret: NPM_TOKEN

View File

@ -100,7 +100,7 @@ export function html(opts: {
htmlFileNames = "[name].html", htmlFileNames = "[name].html",
resolve = ()=>true, resolve = ()=>true,
include = [ include = [
'**/*.(html)',// html or handlebars '**/*.(html)',// html
], ],
exclude, exclude,
} = opts; } = opts;