Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

closing old template mechanism branch #19

Closed
wants to merge 48 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
6997f81
add false-memory-task
cherriechang Jun 19, 2023
abfa815
add spatial cueing package
cherriechang Jun 20, 2023
6af0a04
first attempt at passing previously failed tests
cherriechang Jun 21, 2023
6078789
Delete tender-deers-chew.md
jodeleeuw Jun 21, 2023
440c7d3
switch to node 18, npm 9
jodeleeuw Jun 22, 2023
7e56592
update to jspsych config 1.3.3
jodeleeuw Jun 22, 2023
d2d5168
Merge branch 'main' into false_memory_import
jodeleeuw Jun 22, 2023
308a929
fix package-lock.json
jodeleeuw Jun 22, 2023
9c4ef13
override braces to 3.0.3
cherriechang Aug 6, 2024
3297231
Merge pull request #7 from jspsych/spatial_cueing_import
cherriechang Aug 6, 2024
13f54ea
update cli code to match contrib latest
cherriechang Aug 7, 2024
faa7bfc
change "create-task" npm script to "new"
cherriechang Aug 7, 2024
6717f9e
update false memory task package.json
cherriechang Aug 8, 2024
1c43e1b
Merge branch 'main' into add-js-cli
cherriechang Aug 8, 2024
c07877c
update spatial cueing task package.json
cherriechang Aug 8, 2024
1dc7e46
update package-lock.json
cherriechang Aug 8, 2024
bf650a0
use evaluateTimelineVariable
cherriechang Aug 8, 2024
871bfdd
add method to change comment about alt loading in index.html
cherriechang Aug 8, 2024
52d45a6
fix ts to be before js
cherriechang Aug 8, 2024
1eadb2d
update "create-task" to "new" in README
cherriechang Aug 8, 2024
6e7e9c2
delete braces from package.json
cherriechang Aug 12, 2024
1a7a610
add missing cac dependency
cherriechang Aug 12, 2024
094cf9a
add missing load-tsconfig devdependency
cherriechang Aug 12, 2024
6e2d320
add tree-kill dependency
cherriechang Aug 12, 2024
0d964f2
add authorUrl prompting in cli
cherriechang Aug 13, 2024
c9851f8
add package.json and readme for js template
cherriechang Aug 14, 2024
d9a22e3
fix tsup dependency
cherriechang Aug 14, 2024
1439091
delete extra load-tsconfig dependency
cherriechang Aug 14, 2024
e4a712e
Merge pull request #11 from jspsych/add-js-cli
cherriechang Aug 20, 2024
ab66fa0
merge with remote branch
cherriechang Sep 3, 2024
1cfedef
Merge branch 'main' of github.com:jspsych/jspsych-timelines
cherriechang Sep 3, 2024
7efed0e
push package-lock
cherriechang Sep 3, 2024
5c0b7a4
update jspsych dependency to v8.0.2
cherriechang Sep 5, 2024
0de5056
add changeset
cherriechang Sep 5, 2024
740464e
run npm i again
cherriechang Sep 5, 2024
eabd1c0
Merge pull request #13 from jspsych/sync-main-with-npm
cherriechang Sep 5, 2024
8ee2e51
add gulpfile
cherriechang Sep 6, 2024
d6a0e3b
add changeset
cherriechang Sep 6, 2024
c03f13b
Merge pull request #14 from jspsych/sync-main-with-npm
cherriechang Sep 6, 2024
9be5563
use node for update readme
cherriechang Sep 6, 2024
0b18198
add changeset
cherriechang Sep 6, 2024
0ca62f4
Merge pull request #15 from jspsych/sync-main-with-npm
cherriechang Sep 6, 2024
5b16a4d
chore(release): version packages
github-actions[bot] Sep 6, 2024
bfe8aa3
Merge pull request #16 from jspsych/changeset-release/main
cherriechang Sep 6, 2024
22c0236
delete -task suffix
cherriechang Sep 6, 2024
751d6d5
Merge pull request #17 from jspsych/rename-false-memory-task-and-spat…
cherriechang Sep 6, 2024
45bcc6c
chore(release): version packages
github-actions[bot] Sep 6, 2024
45abd7c
Merge pull request #18 from jspsych/changeset-release/main
cherriechang Sep 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ If you would like to contribute a new task to this repository, please follow the
1. Fork this repository
2. Create a new branch for your task (e.g., 'new-task-arrow-flanker')
3. Run `npm install` in the root directory of the repository to install dependencies.
4. Run `npm run create-task` and answer the prompts to create a new task template in the `packages` directory.
4. Run `npm run new` and answer the prompts to create a new task template in the `packages` directory.
5. Edit the files in the new task directory to implement your task. `src/index.ts` is the main file that will be loaded when the task is used. `README.md` is the documentation for the task. `examples/index.html` is a basic jsPsych experiment template that you can modify to illustrate how your task works.
6. Run `npm run build` to build the task. This will create a `dist` directory with the compiled task.
7. Verify that the example works by opening `examples/index.html` in your browser.