Skip to content

Commit

Permalink
CHORE: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Mar 11, 2024
1 parent e334dbd commit 85c0162
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions docs/quick_start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -321,19 +321,26 @@ Now that the project is up and running we can make our first changes to the code
export function buildTaskNameTimeline(jsPsych) {}
```

7. Run a format to make sure the code is formatted correctly
7. Save your changes and commit them to git:

```shell
npm run format
git commit -a -m "feat: adds taskNameOptions and buildTaskNameTimeline to taskName.js"
```

8. Save your changes and commit them to git:
8. UPDATE EXPERIMENT/indexedDB.JS WITH THE NEW FILES
9. Run a format to make sure the code is formatted correctly

```shell
git commit -a -m "feat: adds taskNameOptions and buildTaskNameTimeline to taskName.js"
npm run format
```

9. Create and merge a [pull request](version_control#create-a-pull-request) to merge your changes into the `main` branch. Make sure the builds complete successfully before merging!
10. Save your changes and commit them to git:

```shell
git commit -a -m "fix: Use new task's file"
```

11. Create and merge a [pull request](version_control#create-a-pull-request) to merge your changes into the `main` branch. Make sure the builds complete successfully before merging!

### 3) Add some trials to the task

Expand Down

0 comments on commit 85c0162

Please sign in to comment.