Skip to content

Commit

Permalink
fix: checkjs library template (#428)
Browse files Browse the repository at this point in the history
* fix: `checkjs` library template

* fix changeset

---------

Co-authored-by: Manuel <[email protected]>
  • Loading branch information
paoloricciuti and manuel3108 authored Jan 31, 2025
1 parent 7d85939 commit c501bcc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/friendly-squids-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'sv': patch
---

fix: `checkjs` library template
2 changes: 1 addition & 1 deletion packages/create/test/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const templates = fs.readdirSync(resolve_path('../templates/')) as TemplateType[
for (const template of templates) {
if (template[0] === '.') continue;

for (const types of ['checkjs', 'typescript'] as LanguageType[]) {
for (const types of ['checkjs', 'typescript', 'none'] as LanguageType[]) {
const cwd = path.join(test_workspace_dir, `${template}-${types}`);
fs.rmSync(cwd, { recursive: true, force: true });

Expand Down

0 comments on commit c501bcc

Please sign in to comment.