diff --git a/src/utilities/create.ts b/src/utilities/create.ts index 7172101..0550330 100644 --- a/src/utilities/create.ts +++ b/src/utilities/create.ts @@ -2,8 +2,9 @@ import { mkdir, readFile, writeFile } from 'fs/promises'; import { dirname, resolve } from 'node:path'; import { fileURLToPath, URL } from 'url'; const root = new URL('../../', import.meta.url); - -const templates = new URL('./templates/', root); +const sern = new URL('./@sern/', root); +const cli = new URL('./cli/', sern); +const templates = new URL('./templates/', cli); const extraURL = new URL('./extra/', templates); const extraFolder = fileURLToPath(extraURL);