From b789f754f4b1f499307d4ffc7260a16faef13244 Mon Sep 17 00:00:00 2001 From: Robert Gemma <38439940+RobertGemmaJr@users.noreply.github.com> Date: Thu, 29 Feb 2024 16:57:32 -0500 Subject: [PATCH] Update docs/project_organization/directory_structure.mdx Co-authored-by: Timothy Divoll --- docs/project_organization/directory_structure.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/project_organization/directory_structure.mdx b/docs/project_organization/directory_structure.mdx index a4745c8f..42b7d31e 100644 --- a/docs/project_organization/directory_structure.mdx +++ b/docs/project_organization/directory_structure.mdx @@ -199,7 +199,8 @@ The `tag` function inside `tags.js` can be used to wrap language in any html tag - `.github/workflows/` contains .yaml files used for [CI/CD](ci_cd) with GitHub Actions - `package.json` contains metadata about your project, a list of the dependencies needed for the project, and scripts to run tasks related to your task. The [Quick Start](quick_start#4-change-name-and-description) lists which metadata should be changed. - `cli.mjs` is the script used to download and delete data stored in Firestore. -- `version.js` is the script used to keep track of which version of the task a given experiment is using +- `version.js` is the script used to keep track of which version of the task a given experiment is using. + :::caution `cli.mjs` and `version.js` are automated scripts and should not be edited. :::