@jspsych/config 3.2.2 → 3.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/gulp.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @jspsych/config
|
|
2
2
|
|
|
3
|
+
## 3.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3570](https://github.com/jspsych/jsPsych/pull/3570) [`8d6c03ec3da9b17b9d6582641b0d488e5198ff2d`](https://github.com/jspsych/jsPsych/commit/8d6c03ec3da9b17b9d6582641b0d488e5198ff2d) Thanks [@jadeddelta](https://github.com/jadeddelta)! - update rollup for security fix
|
|
8
|
+
|
|
9
|
+
## 3.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#3561](https://github.com/jspsych/jsPsych/pull/3561) [`a25c47256c61a5fea67acf4a1fdf29024fe1ab21`](https://github.com/jspsych/jsPsych/commit/a25c47256c61a5fea67acf4a1fdf29024fe1ab21) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - Add the minified version of the survey plugin CSS file, `survey.min.css`, to the dist archive.
|
|
14
|
+
|
|
3
15
|
## 3.2.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/gulp.js
CHANGED
|
@@ -84,6 +84,7 @@ export const createCoreDistArchive = () =>
|
|
|
84
84
|
|
|
85
85
|
// survey.css
|
|
86
86
|
src("packages/plugin-survey/css/survey.css").pipe(rename("/dist/survey.css")),
|
|
87
|
+
src("packages/plugin-survey/css/survey.min.css").pipe(rename("/dist/survey.min.css")),
|
|
87
88
|
|
|
88
89
|
// Examples
|
|
89
90
|
src("examples/**/*", { base: "." })
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jspsych/config",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.1",
|
|
4
4
|
"description": "Shared (build) configuration for jsPsych packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"jest-canvas-mock": "2.5.0",
|
|
65
65
|
"jest-environment-jsdom": "29.7.0",
|
|
66
66
|
"merge-stream": "2.0.0",
|
|
67
|
-
"rollup": "4.
|
|
67
|
+
"rollup": "^4.22.4",
|
|
68
68
|
"rollup-plugin-dts": "6.1.1",
|
|
69
69
|
"rollup-plugin-esbuild": "6.1.1",
|
|
70
70
|
"rollup-plugin-modify": "^3.0.0",
|