From fd49f7754fd84e282cde08affb17ac7fc9fab59e Mon Sep 17 00:00:00 2001 From: cchang-vassar <79338042+cchang-vassar@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:33:14 -0400 Subject: [PATCH] add 's' to 'citation' field --- templates/extension-template-js/src/index.js | 2 +- templates/extension-template-ts/src/index.ts | 2 +- templates/plugin-template-js/src/index.js | 2 +- templates/plugin-template-ts/src/index.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/extension-template-js/src/index.js b/templates/extension-template-js/src/index.js index f111b802..a0200b77 100644 --- a/templates/extension-template-js/src/index.js +++ b/templates/extension-template-js/src/index.js @@ -45,7 +45,7 @@ var _globalName_ = (function (jspsych) { type: ParameterType.STRING, }, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/extension-template-ts/src/index.ts b/templates/extension-template-ts/src/index.ts index 13421f3f..9e0e9b7f 100644 --- a/templates/extension-template-ts/src/index.ts +++ b/templates/extension-template-ts/src/index.ts @@ -32,7 +32,7 @@ class ExtensionNameExtension implements JsPsychExtension { type: ParameterType.STRING, }, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/plugin-template-js/src/index.js b/templates/plugin-template-js/src/index.js index 57651e69..f06bebcb 100644 --- a/templates/plugin-template-js/src/index.js +++ b/templates/plugin-template-js/src/index.js @@ -25,7 +25,7 @@ var _globalName_ = (function (jspsych) { data2: { type: ParameterType.STRING, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */ diff --git a/templates/plugin-template-ts/src/index.ts b/templates/plugin-template-ts/src/index.ts index 82676176..03196476 100644 --- a/templates/plugin-template-ts/src/index.ts +++ b/templates/plugin-template-ts/src/index.ts @@ -26,7 +26,7 @@ const info = { data2: { type: ParameterType.STRING, }, - citation: { + citations: { /** APA citation JSON */ apa: `{apaJson}`, /** BibTeX citation JSON */