Skip to content

Commit

Permalink
fix: change file path for sern/extras (#109)
Browse files Browse the repository at this point in the history
Co-authored-by: gary <[email protected]>
  • Loading branch information
GlitchApotamus and gary authored Aug 6, 2023
1 parent 14df4a9 commit 2348e3e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/utilities/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 2348e3e

Please sign in to comment.