Skip to content

Commit

Permalink
fix incorrect path in dist gulp job (build:archive) (#3293)
Browse files Browse the repository at this point in the history
* fix incorrect path in dist gulp job (build:archive)
* add changeset for config patch
  • Loading branch information
becky-gilbert authored May 15, 2024
1 parent e201ca2 commit 7bcd4e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/nine-mirrors-draw.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/config/gulp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: "." })
Expand Down

0 comments on commit 7bcd4e0

Please sign in to comment.