Skip to content

Commit

Permalink
https://github.com/haxtheweb/issues/issues/2200
Browse files Browse the repository at this point in the history
  • Loading branch information
btopro committed Dec 5, 2024
1 parent d9b0391 commit 714629c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/programs/webcomponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ export async function webcomponentProcess(commandRun, project, port = "8000") {
);
// rename gitignore to improve copy cross platform compat
await fs.renameSync(`${project.path}/${project.name}/_github`, `${project.path}/${project.name}/.github`);
await fs.renameSync(`${project.path}/${project.name}/_vscode`, `${project.path}/${project.name}/.vscode`);
await fs.renameSync(`${project.path}/${project.name}/_editorconfig`, `${project.path}/${project.name}/.editorconfig`);
await fs.renameSync(`${project.path}/${project.name}/_gitignore`, `${project.path}/${project.name}/.gitignore`);
await fs.renameSync(`${project.path}/${project.name}/_nojekyll`, `${project.path}/${project.name}/.nojekyll`);
Expand Down
11 changes: 11 additions & 0 deletions src/templates/webcomponent/hax/_vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"recommendations": [
"bierner.lit-html",
"deque-systems.vscode-axe-linter",
"ecmel.vscode-html-css",
"oliversturm.fix-json",
"runem.lit-plugin",
"streetsidesoftware.code-spell-checker",
"yzhang.markdown-all-in-one"
]
}

0 comments on commit 714629c

Please sign in to comment.