@jspsych/config 3.2.2 → 3.3.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/gulp.js +1 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jspsych/config
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#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.
8
+
3
9
  ## 3.2.2
4
10
 
5
11
  ### 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.2.2",
3
+ "version": "3.3.0",
4
4
  "description": "Shared (build) configuration for jsPsych packages",
5
5
  "type": "module",
6
6
  "scripts": {