fix incorrect path in dist gulp job (build:archive) (#3293)

* fix incorrect path in dist gulp job (build:archive)
* add changeset for config patch
This commit is contained in:
Becky Gilbert 2024-05-15 11:02:59 -07:00 committed by GitHub
parent e201ca29af
commit 7bcd4e0a25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"@jspsych/config": patch
---
This fixes an error in the gulp task that creates the dist archive for a release, which was causing the dist archive to fail.

View File

@ -83,7 +83,7 @@ export const createCoreDistArchive = () =>
src("packages/jspsych/css/jspsych.css").pipe(rename("/dist/jspsych.css")),
// survey.css
src("packages/survey/css/survey.css").pipe(rename("/dist/survey.css")),
src("packages/plugin-survey/css/survey.css").pipe(rename("/dist/survey.css")),
// Examples
src("examples/**/*", { base: "." })