Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Jun 28, 2024
1 parent 4f0c095 commit 8ef1240
Show file tree
Hide file tree
Showing 50 changed files with 18 additions and 20 deletions.
8 changes: 4 additions & 4 deletions apps/svelte.dev/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/.vercel
/package
/src/lib/generated
/src/routes/_components/Supporters/contributors.jpg
/src/routes/_components/Supporters/contributors.js
/src/routes/_components/Supporters/donors.jpg
/src/routes/_components/Supporters/donors.js
/src/routes/_home/Supporters/contributors.jpg
/src/routes/_home/Supporters/contributors.js
/src/routes/_home/Supporters/donors.jpg
/src/routes/_home/Supporters/donors.js
/static/svelte-app.json
8 changes: 3 additions & 5 deletions apps/svelte.dev/scripts/get_contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const force = process.env.FORCE_UPDATE === 'true';
const __dirname = dirname(fileURLToPath(import.meta.url));
process.chdir(__dirname);

// ../src/routes/_components/Supporters/contributors.js
const outputFile = new URL(`../src/routes/_components/Supporters/contributors.js`, import.meta.url);
// ../src/routes/_home/Supporters/contributors.js
const outputFile = new URL(`../src/routes/_home/Supporters/contributors.js`, import.meta.url);

try {
if (!force && (await stat(outputFile))) {
Expand Down Expand Up @@ -65,9 +65,7 @@ try {
await sprite
.quality(80)
.writeAsync(
fileURLToPath(
new URL(`../src/routes/_components/Supporters/contributors.jpg`, import.meta.url)
)
fileURLToPath(new URL(`../src/routes/_home/Supporters/contributors.jpg`, import.meta.url))
);

const str = `[\n\t${authors.map((a) => `'${a.login}'`).join(',\n\t')}\n]`;
Expand Down
4 changes: 2 additions & 2 deletions apps/svelte.dev/scripts/get_donors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const force = process.env.FORCE_UPDATE === 'true';
const __dirname = dirname(fileURLToPath(import.meta.url));
process.chdir(__dirname);

const outputFile = new URL(`../src/routes/_components/Supporters/donors.js`, import.meta.url);
const outputFile = new URL(`../src/routes/_home/Supporters/donors.js`, import.meta.url);

try {
if (!force && (await stat(outputFile))) {
Expand Down Expand Up @@ -59,7 +59,7 @@ try {
await sprite
.quality(80)
.writeAsync(
fileURLToPath(new URL(`../src/routes/_components/Supporters/donors.jpg`, import.meta.url))
fileURLToPath(new URL(`../src/routes/_home/Supporters/donors.jpg`, import.meta.url))
);

const str = `[\n\t${included.map((a) => `${JSON.stringify(a.backer.name)}`).join(',\n\t')}\n]`;
Expand Down
18 changes: 9 additions & 9 deletions apps/svelte.dev/src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<script>
import { Blurb, Footer, TrySection } from '@sveltejs/site-kit/home';
import Hero from './_components/Hero.svelte';
import Supporters from './_components/Supporters/index.svelte';
import WhosUsingSvelte from './_components/WhosUsingSvelte/index.svelte';
import Svelte from './_components/Svelte.svelte';
import Features from './_components/Features.svelte';
import Deployment from './_components/Deployment.svelte';
import Showcase from './_components/Showcase.svelte';
import './_components/common.css';
import HeroSvelteKit from './_components/HeroSvelteKit.svelte';
import Hero from './_home/Hero.svelte';
import Supporters from './_home/Supporters/index.svelte';
import WhosUsingSvelte from './_home/WhosUsingSvelte/index.svelte';
import Svelte from './_home/Svelte.svelte';
import Features from './_home/Features.svelte';
import Deployment from './_home/Deployment.svelte';
import Showcase from './_home/Showcase.svelte';
import './_home/common.css';
import HeroSvelteKit from './_home/HeroSvelteKit.svelte';
</script>

<svelte:head>
Expand Down
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 8ef1240

Please sign in to comment.