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>
This commit is contained in:
github-actions[bot] 2024-05-14 12:35:27 -07:00 committed by GitHub
parent 54e04dc93f
commit e201ca29af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 # 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 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: This plugin requires an additional stylesheet called `survey.css`. You can load it via:
```html ```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: 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: Using the CDN-hosted JavaScript file:
```js ```js
<script src="https://unpkg.com/@jspsych/plugin-survey@1.0.0"></script> <script src="https://unpkg.com/@jspsych/plugin-survey@1.0.1"></script>
<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">
``` ```
Using the JavaScript file downloaded from a GitHub release dist archive: Using the JavaScript file downloaded from a GitHub release dist archive:

6
package-lock.json generated
View File

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

View File

@ -1,5 +1,11 @@
# @jspsych/config # @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 ## 2.0.0
### Major Changes ### Major Changes

View File

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

View File

@ -1,5 +1,11 @@
# @jspsych/plugin-survey # @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 ## 1.0.0
### Major Changes ### Major Changes

View File

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