@jspsych/config 2.0.1 → 2.0.2

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 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jspsych/config
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3293](https://github.com/jspsych/jsPsych/pull/3293) [`7bcd4e0a`](https://github.com/jspsych/jsPsych/commit/7bcd4e0a25b46e2cf384f6b747092e75fabce00f) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - This fixes an error in the gulp task that creates the dist archive for a release, which was causing the dist archive to fail.
8
+
3
9
  ## 2.0.1
4
10
 
5
11
  ### Patch Changes
package/gulp.js CHANGED
@@ -83,7 +83,7 @@ export const createCoreDistArchive = () =>
83
83
  src("packages/jspsych/css/jspsych.css").pipe(rename("/dist/jspsych.css")),
84
84
 
85
85
  // survey.css
86
- src("packages/survey/css/survey.css").pipe(rename("/dist/survey.css")),
86
+ src("packages/plugin-survey/css/survey.css").pipe(rename("/dist/survey.css")),
87
87
 
88
88
  // Examples
89
89
  src("examples/**/*", { base: "." })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jspsych/config",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Shared (build) configuration for jsPsych packages",
5
5
  "type": "module",
6
6
  "exports": {