Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieHFFF committed Nov 12, 2024
1 parent f1c016f commit 3dfa6f0
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 17 deletions.
5 changes: 5 additions & 0 deletions .changeset/sixty-coins-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@jspsych-timelines/n-back": major
---

Setting up the template for n-back experiments and examples
2 changes: 1 addition & 1 deletion packages/n-back/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

Implementing the typical n-back experiment as a template in JsPsych
Creating template for n-back experiments

## Loading

Expand Down
2 changes: 1 addition & 1 deletion packages/n-back/dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ n?: number, // Default value for N-back level
num_trials?: number, // Default number of trials
rep_ratio?: number, debrief?: boolean, return_accuracy?: boolean, data_output?: "none" | "json" | "csv"): any[];

export { createTimeline, createTimeline as default };
export { createTimeline };
4 changes: 0 additions & 4 deletions packages/n-back/dist/index.global.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/n-back/dist/index.global.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions packages/n-back/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/n-back/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/n-back/docs/n-back.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# n-back

Implementing the typical n-back experiment as a template in JsPsych
Creating template for n-back experiments

## Parameters

Expand Down
6 changes: 3 additions & 3 deletions packages/n-back/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@jspsych-timelines/n-back",
"version": "0.0.1",
"description": "Implementing the typical n-back experiment as a template in JsPsych",
"description": "Creating template for n-back experiments",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.js",
"unpkg": "dist/index.browser.min.js",
"scripts": {
"build": "tsup src/index.ts --format esm,iife --sourcemap --dts --treeshake --clean --global-name jsPsychTimelineNBack"
},
Expand All @@ -18,7 +18,7 @@
],
"author": {
"name": "Feng Wan",
"url": "https://github.com/CharlieHFFF"
"url": ""
},
"license": "MIT",
"bugs": {
Expand Down
4 changes: 1 addition & 3 deletions packages/n-back/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,4 @@ export function createTimeline(jsPsych: JsPsych,
}}

return timeline
}

export default createTimeline
}

0 comments on commit 3dfa6f0

Please sign in to comment.