Skip to content

Commit 7fef08b

Browse files
authored
Merge pull request #736 from processing/merge-main
Merge main into 2.0
2 parents baf931e + a436298 commit 7fef08b

File tree

12 files changed

+92
-30
lines changed

12 files changed

+92
-30
lines changed

.github/workflows/beta_deploy.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Deploy beta to Netlify
2+
3+
on:
4+
# Trigger the workflow every time you push to the `main` branch
5+
# Using a different branch name? Replace `main` with your branch’s name
6+
push:
7+
branches: ["2.0"]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
jobs:
18+
build-deploy:
19+
runs-on: ubuntu-latest
20+
steps:
21+
22+
- name: Checkout your repository using git
23+
uses: actions/checkout@v4
24+
25+
- name: Install, build, and upload your site output
26+
env:
27+
NODE_OPTIONS: "--max_old_space_size=4096"
28+
uses: withastro/action@v2
29+
30+
- name: Deploy to Netlify
31+
uses: nwtgck/[email protected]
32+
with:
33+
publish-dir: './dist'
34+
production-branch: main
35+
github-token: ${{ secrets.GITHUB_TOKEN }}
36+
deploy-message: "Deploy from GitHub Actions"
37+
enable-pull-request-comment: false
38+
enable-commit-comment: false
39+
overwrites-pull-request-comment: false
40+
env:
41+
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
42+
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

docs/contributing_libraries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ p5.js welcomes libraries contributed by others! <a href="https://github.com/proc
1919
4. Add a **high-res colored image of 1500x1000px** of your library into `src/content/libraries/images`
2020
5. Submit a pull request and we'll review your submission
2121

22-
We add libraries that are open-source, includes some documentation and examples, and <a href="https://github.com/processing/p5.js/blob/main/CODE_OF_CONDUCT.md">follow our code of conduct.</a> This directory targets beginner users, so we aim to ensure users have a smooth experience getting started with any library linked to.
22+
We add libraries that are open-source, include some documentation and examples, and <a href="https://github.com/processing/p5.js/blob/main/CODE_OF_CONDUCT.md">follow our code of conduct.</a> This directory targets beginner users, so we aim to ensure users have a smooth experience getting started with any library linked to.
2323

2424
If you have any questions, feel free to open an issue or create a work-in-progress PR and ask us anything!

src/components/Footer/index.astro

+12-12
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ const bannerEntry = await getEntry("banner", currentLocale);
2626
<div>
2727
<div class="mb-5" id="resources-footer-category">{t("Resources")}</div>
2828
<ul aria-labelledby="resources-footer-category">
29-
<li><a href="/reference">{t("Reference")}</a></li>
30-
<li><a href="/tutorials">{t("Tutorials")}</a></li>
31-
<li><a href="/examples">{t("Examples")}</a></li>
32-
<li><a href="/contribute">{t("Contribute")}</a></li>
33-
<li><a href="/community">{t("Community")}</a></li>
34-
<li><a href="/about">{t("About")}</a></li>
29+
<li><a href="/reference/">{t("Reference")}</a></li>
30+
<li><a href="/tutorials/">{t("Tutorials")}</a></li>
31+
<li><a href="/examples/">{t("Examples")}</a></li>
32+
<li><a href="/contribute/">{t("Contribute")}</a></li>
33+
<li><a href="/community/">{t("Community")}</a></li>
34+
<li><a href="/about/">{t("About")}</a></li>
3535
<li><a href="https://editor.p5js.org">{t("Start Coding")}</a></li>
36-
<li><a href="/donate">{t("Donate")}</a></li>
36+
<li><a href="/donate/">{t("Donate")}</a></li>
3737
</ul>
3838
</div>
3939
<div class="lg:col-span-2 grid grid-cols-subgrid">
4040
<div>
4141
<div class="mb-5" id="info-footer-category">{t("Information")}</div>
4242
<ul aria-labelledby="info-footer-category">
43-
<li><a href="/download">{t("Download")}</a></li>
44-
<li><a href="/contact">{t("Contact")}</a></li>
45-
<li><a href="/copyright">{t("Copyright")}</a></li>
46-
<li><a href="/privacy-policy">{t("Privacy Policy")}</a></li>
47-
<li><a href="/terms-of-use">{t("Terms of Use")}</a></li>
43+
<li><a href="/download/">{t("Download")}</a></li>
44+
<li><a href="/contact/">{t("Contact")}</a></li>
45+
<li><a href="/copyright/">{t("Copyright")}</a></li>
46+
<li><a href="/privacy-policy/">{t("Privacy Policy")}</a></li>
47+
<li><a href="/terms-of-use/">{t("Terms of Use")}</a></li>
4848
</ul>
4949
</div>
5050
<div class="lg:col-start-2 mt-xl lg:mt-0">

src/content/text-detail/en/about.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Community values:
3636
</div>
3737

3838
<div class='mt-xl'>
39-
<LinkButton variant='link' url='/contribute/access'>Access Statement</LinkButton>
40-
<LinkButton variant='link' url='/code-of-conduct'>Code of Conduct</LinkButton>
39+
<LinkButton variant='link' url='/contribute/access/'>Access Statement</LinkButton>
40+
<LinkButton variant='link' url='/code-of-conduct/'>Code of Conduct</LinkButton>
4141
</div>

src/content/text-detail/es/about.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ Valores de la comunidad:
2929
</div>
3030

3131
<div class='mt-xl'>
32-
<LinkButton variant='link' url='/contribute/access'>Access Statement</LinkButton>
33-
<LinkButton variant='link' url='/code-of-conduct'>Code of Conduct</LinkButton>
32+
<LinkButton variant='link' url='/contribute/access/'>Access Statement</LinkButton>
33+
<LinkButton variant='link' url='/code-of-conduct/'>Code of Conduct</LinkButton>
3434
</div>

src/content/text-detail/hi/about.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ P5.js समुदाय प्रौद्योगिकी के साथ
2929
</div>
3030

3131
<div class='mt-xl'>
32-
<LinkButton variant='link' url='/contribute/access'>प्रवेश विवरण</LinkButton>
33-
<LinkButton variant='link' url='/code-of-conduct'>आचार संहिता</LinkButton>
32+
<LinkButton variant='link' url='/contribute/access/'>प्रवेश विवरण</LinkButton>
33+
<LinkButton variant='link' url='/code-of-conduct/'>आचार संहिता</LinkButton>
3434
</div>

src/content/text-detail/ko/about.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ p5.js 커뮤니티는 기술을 통해 예술과 디자인에 관련된 탐구
2929
</div>
3030

3131
<div class='mt-xl'>
32-
<LinkButton variant='link' url='/contribute/access'>접근성 성명서</LinkButton>
33-
<LinkButton variant='link' url='/code-of-conduct'>행동 강령</LinkButton>
32+
<LinkButton variant='link' url='/contribute/access/'>접근성 성명서</LinkButton>
33+
<LinkButton variant='link' url='/code-of-conduct/'>행동 강령</LinkButton>
3434
</div>

src/content/text-detail/zh-Hans/about.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ p5.js 鼓励通过迭代编码来实现创意表达。我们重视代码开源
2929
</div>
3030

3131
<div class='mt-xl'>
32-
<LinkButton variant='link' url='/contribute/access'>可及性声明</LinkButton>
33-
<LinkButton variant='link' url='/code-of-conduct'>行为规范</LinkButton>
32+
<LinkButton variant='link' url='/contribute/access/'>可及性声明</LinkButton>
33+
<LinkButton variant='link' url='/code-of-conduct/'>行为规范</LinkButton>
3434
</div>

src/layouts/AboutLayout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const displayedFeaturedPeople = sortedFeaturedPeople.slice(0, 6);
7878
))
7979
}
8080
</ul>
81-
<LinkButton variant="link" url="/people" class="mt-md min-w-[220px]"
81+
<LinkButton variant="link" url="/people/" class="mt-md min-w-[220px]"
8282
>{t("All People")}</LinkButton
8383
>
8484
</section>

src/layouts/HomepageLayout.astro

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ setJumpToState(null);
4141
class="col-span-2 lg:col-span-3 order-1 grid grid-cols-subgrid content-start"
4242
>
4343
<h2 class="col-span-3">{data.referenceHeaderText}</h2>
44-
<LinkButton class="col-span-1 w-full" variant="link" url="/reference"
44+
<LinkButton class="col-span-1 w-full" variant="link" url="/reference/"
4545
>{t("Reference")}</LinkButton
4646
>
4747
</div>
4848
<div
4949
class="col-span-2 lg:col-span-3 order-2 lg:order-4 grid grid-cols-subgrid content-start"
5050
>
5151
<h2 class="col-span-full">{data.examplesHeaderText}</h2>
52-
<LinkButton class="col-span-1 w-full" variant="link" url="/examples"
52+
<LinkButton class="col-span-1 w-full" variant="link" url="/examples/"
5353
>{t("Examples")}</LinkButton
5454
>
5555
</div>
@@ -64,7 +64,7 @@ setJumpToState(null);
6464
<div class="content-grid-simple mb-xl">
6565
<div class="col-span-2 lg:col-span-3 grid grid-cols-subgrid content-start">
6666
<h2 class="col-span-3">{data.communityHeaderText}</h2>
67-
<LinkButton class="col-span-1 w-full" variant="link" url="/community"
67+
<LinkButton class="col-span-1 w-full" variant="link" url="/community/"
6868
>{t("Community")}</LinkButton
6969
>
7070
</div>
@@ -84,15 +84,15 @@ setJumpToState(null);
8484
<div class="grid grid-cols-subgrid col-span-1 lg:col-span-2">
8585
<h2 class="col-span-2">{t("Donate to p5.js")}</h2>
8686
<div class="col-span-1">
87-
<LinkButton class="w-full" variant="link" url="/donate"
87+
<LinkButton class="w-full" variant="link" url="/donate/"
8888
>{t("Donate")}</LinkButton
8989
>
9090
</div>
9191
</div>
9292
<div class="grid grid-cols-subgrid col-span-1 lg:col-span-2">
9393
<h2 class="col-span-2">{t("Download p5.js")}</h2>
9494
<div class="col-span-1">
95-
<LinkButton class="w-full" variant="link" url="/download"
95+
<LinkButton class="w-full" variant="link" url="/download/"
9696
>{t("Download Library")}</LinkButton
9797
>
9898
</div>

src/scripts/parsers/reference.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { cloneLibraryRepo, p5RepoUrl, readFile } from "../utils";
1+
import { cloneLibraryRepo,cleanUpDirectory, p5RepoUrl, readFile } from "../utils";
22
import fs from "fs/promises";
33
import { exec, execSync } from "child_process";
44
import path from "path";
@@ -13,6 +13,10 @@ const localPath = path.join(__dirname, "in", "p5.js");
1313
const localSoundPath = path.join(__dirname, "in", "p5.sound.js");
1414
const yuidocOutputPath = path.join(__dirname, "out")
1515

16+
//Directory to clean after cloning the libraries
17+
const parsersInPath = path.join(__dirname, "in");
18+
const parsersOutPath = path.join(__dirname, "out");
19+
1620
/**
1721
* Main function to clone the p5.js library and save the YUIDoc output to a file
1822
*/
@@ -77,6 +81,10 @@ export const parseLibraryReference =
7781
);
7882

7983
await serveYuidocOutput('data');
84+
85+
//delete the cloned directories
86+
await cleanUpDirectory(parsersInPath );
87+
await cleanUpDirectory(parsersOutPath );
8088
return combined;
8189
};
8290

src/scripts/utils.ts

+12
Original file line numberDiff line numberDiff line change
@@ -304,3 +304,15 @@ export const rewriteRelativeMdLinks = (markdownText: string): string => {
304304
return `[${linkText}](${updatedUrl})`;
305305
});
306306
};
307+
/**
308+
* Deletes the contents of the given directory.
309+
* @param dirPath Path to the directory to clean up.
310+
*/
311+
export const cleanUpDirectory = async (dirPath: string) => {
312+
try {
313+
await fs.rm(dirPath, { recursive: true, force: true });
314+
console.log(`Cleaned up directory: ${dirPath}`);
315+
} catch (err) {
316+
console.error(`Error cleaning up directory ${dirPath}: ${err}`);
317+
}
318+
};

0 commit comments

Comments
 (0)