Skip to content

Commit

Permalink
allow dot files in template downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Feb 18, 2022
1 parent a3e614c commit 800fb4d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scripts/build-svelte-app-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as fs from 'fs';
const files = [];

for (const path of process.argv.slice(2)) {
if (!path.includes('/.')) {
if (!path.includes('.DS_Store')) {
files.push({ path: path.split('svelte-app/')[1], data: fs.readFileSync(path).toString() });
}
}
Expand Down
Binary file removed src/scripts/svelte-app/static/svelte-welcome.png
Binary file not shown.
Binary file removed src/scripts/svelte-app/static/svelte-welcome.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion static/svelte-app.json

Large diffs are not rendered by default.

0 comments on commit 800fb4d

Please sign in to comment.