From 6610ab8c353cda99201f2c1ff634481d13a20b75 Mon Sep 17 00:00:00 2001 From: Amy Date: Tue, 20 Feb 2024 23:38:03 -0800 Subject: [PATCH 1/2] add hyphen in teams.svelte, fixing grammar (#1021) "semester-long" should be hyphenated. This patch adds a hyphen where it is currently missing. Signed-off-by: Amy Parker --- src/routes/(site)/teams.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/(site)/teams.svelte b/src/routes/(site)/teams.svelte index ebedea02..a27b8046 100644 --- a/src/routes/(site)/teams.svelte +++ b/src/routes/(site)/teams.svelte @@ -31,7 +31,7 @@
Dev Team Badge
- Develop semester long projects to show your momDevelop semester-long projects to show your mom
From 4f6b867c260722172c6e66ed84e233b6be2e66d3 Mon Sep 17 00:00:00 2001 From: Amy Date: Tue, 20 Feb 2024 23:39:31 -0800 Subject: [PATCH 2/2] reflect new size-limit in contributing guide (#1022) The contributing guide currently lists the size-limit as 50 MB. This is incorrect, as the size-limit is (and has been for some time) 256 MB. This patch updates the contributing guide to reflect that difference. Signed-off-by: Amy Parker Co-authored-by: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bcff089f..7ed9f40c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,7 +55,7 @@ npm run test:coverage ### NPM bloat In this project, we set a threshold for how large the `/node_modules` folder can become after an `npm install`. -In our [`package.json`](package.json), we set the size to 50 MB. +In our [`package.json`](package.json), we set the size to 256 MB. To test the size of the dependencies in your local workspace, run `npm run test:size`.