Version Packages (#3292)

* chore(release): version packages
* edit changelogs

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Becky Gilbert <beckyannegilbert@gmail.com>

(rebased-with-history from commit e201ca29af)
This commit is contained in:
github-actions[bot] 2024-05-14 12:35:27 -07:00 committed by bjoluc
commit 94e174d510
7 changed files with 22 additions and 16 deletions

View File

@ -1,6 +0,0 @@
---
"@jspsych/config": patch
"@jspsych/plugin-survey": patch
---
This fixes the incorrect width for dropdown question options (#3286), adds the survey.css file to the dist archive (#3131), and cleans up code/comments.

View File

@ -1,6 +1,6 @@
# survey
Current version: 1.0.0. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-survey/CHANGELOG.md).
Current version: 1.0.1. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-survey/CHANGELOG.md).
SurveyJS version: 1.9.138
@ -205,7 +205,7 @@ This plugin does not yet support [simulation mode](../overview/simulation.md).
This plugin requires an additional stylesheet called `survey.css`. You can load it via:
```html
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@1.0.0/css/survey.css">
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@1.0.1/css/survey.css">
```
If you are using a bundler such as [webpack](https://webpack.js.org/), you can also import it in JavaScript as follows, depending on your bundler configuration:
@ -218,8 +218,8 @@ import '@jspsych/plugin-survey/css/survey.css'
Using the CDN-hosted JavaScript file:
```js
<script src="https://unpkg.com/@jspsych/plugin-survey@1.0.0"></script>
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@1.0.0/css/survey.css">
<script src="https://unpkg.com/@jspsych/plugin-survey@1.0.1"></script>
<link rel="stylesheet" href="https://unpkg.com/@jspsych/plugin-survey@1.0.1/css/survey.css">
```
Using the JavaScript file downloaded from a GitHub release dist archive:

6
package-lock.json generated
View File

@ -18003,7 +18003,7 @@
},
"packages/config": {
"name": "@jspsych/config",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "25.0.7",
@ -18624,14 +18624,14 @@
},
"packages/plugin-survey": {
"name": "@jspsych/plugin-survey",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"dependencies": {
"survey-core": "^1.9.138",
"survey-knockout-ui": "^1.9.139"
},
"devDependencies": {
"@jspsych/config": "^2.0.0",
"@jspsych/config": "^2.0.1",
"@jspsych/test-utils": "^1.1.2",
"npm-run-all": "^4.1.5",
"sass": "^1.43.5"

View File

@ -1,5 +1,11 @@
# @jspsych/config
## 2.0.1
### Patch Changes
- [#3287](https://github.com/jspsych/jsPsych/pull/3287) [`54e04dc9`](https://github.com/jspsych/jsPsych/commit/54e04dc93f54a7a019db1fee4961dcc5e02b6fc0) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - Adds the survey.css file to the dist archive (#3131).
## 2.0.0
### Major Changes

View File

@ -1,6 +1,6 @@
{
"name": "@jspsych/config",
"version": "2.0.0",
"version": "2.0.1",
"description": "Shared (build) configuration for jsPsych packages",
"type": "module",
"exports": {

View File

@ -1,5 +1,11 @@
# @jspsych/plugin-survey
## 1.0.1
### Patch Changes
- [#3287](https://github.com/jspsych/jsPsych/pull/3287) [`54e04dc9`](https://github.com/jspsych/jsPsych/commit/54e04dc93f54a7a019db1fee4961dcc5e02b6fc0) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - This fixes the incorrect width for dropdown question options (#3286) and cleans up code/comments.
## 1.0.0
### Major Changes

View File

@ -1,6 +1,6 @@
{
"name": "@jspsych/plugin-survey",
"version": "1.0.0",
"version": "1.0.1",
"description": "A jsPsych plugin for complex surveys",
"type": "module",
"main": "dist/index.cjs",
@ -44,7 +44,7 @@
"jspsych": ">=7.0.0"
},
"devDependencies": {
"@jspsych/config": "^2.0.0",
"@jspsych/config": "^2.0.1",
"@jspsych/test-utils": "^1.1.2",
"npm-run-all": "^4.1.5",
"sass": "^1.43.5"