@jspsych/config 3.0.1 → 3.1.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 +21 -0
- package/jest.cjs +1 -0
- package/jest.setup.js +3 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @jspsych/config
|
|
2
2
|
|
|
3
|
+
## 3.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3396](https://github.com/jspsych/jsPsych/pull/3396) [`d683396e`](https://github.com/jspsych/jsPsych/commit/d683396e5e6465f454625ec99675f76959a99e9b) Thanks [@bjoluc](https://github.com/bjoluc)! - Update dependencies for config.
|
|
8
|
+
|
|
9
|
+
- `@rollup/plugin-common-js` updated to 26.0.1
|
|
10
|
+
- `esbuild` updated to 0.23.1
|
|
11
|
+
- `gulp` updated to 5.0.0
|
|
12
|
+
- `gulp-cli` updated to 3.0.0
|
|
13
|
+
- `rollup` updated to 4.21.2
|
|
14
|
+
- `rollup-plugin-dts` updated to 6.1.1
|
|
15
|
+
- `rollup-plugin-esbuild` updated to 6.1.1
|
|
16
|
+
- `rollup-plugin-node-externals` updated to 7.1.3
|
|
17
|
+
|
|
18
|
+
## 3.1.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [#3435](https://github.com/jspsych/jsPsych/pull/3435) [`3de5aad4`](https://github.com/jspsych/jsPsych/commit/3de5aad43b538be56a3957be5beb6e9910b74267) Thanks [@jadeddelta](https://github.com/jadeddelta)! - update to force the dom to clear after each individual test
|
|
23
|
+
|
|
3
24
|
## 3.0.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/jest.cjs
CHANGED
package/jest.setup.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jspsych/config",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Shared (build) configuration for jsPsych packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://www.jspsych.org/latest/developers/configuration",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@rollup/plugin-commonjs": "
|
|
38
|
+
"@rollup/plugin-commonjs": "26.0.1",
|
|
39
39
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
40
40
|
"@sucrase/jest-plugin": "3.0.0",
|
|
41
41
|
"@types/gulp": "4.0.17",
|
|
42
42
|
"@types/jest": "29.5.8",
|
|
43
|
-
"alias-hq": "6.2.
|
|
43
|
+
"alias-hq": "6.2.4",
|
|
44
44
|
"canvas": "^2.11.2",
|
|
45
|
-
"esbuild": "0.
|
|
46
|
-
"gulp": "
|
|
47
|
-
"gulp-cli": "
|
|
45
|
+
"esbuild": "0.23.1",
|
|
46
|
+
"gulp": "5.0.0",
|
|
47
|
+
"gulp-cli": "3.0.0",
|
|
48
48
|
"gulp-file": "0.4.0",
|
|
49
49
|
"gulp-rename": "2.0.0",
|
|
50
50
|
"gulp-replace": "1.1.4",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"jest": "29.7.0",
|
|
53
53
|
"jest-environment-jsdom": "29.7.0",
|
|
54
54
|
"merge-stream": "2.0.0",
|
|
55
|
-
"rollup": "4.
|
|
56
|
-
"rollup-plugin-dts": "
|
|
57
|
-
"rollup-plugin-esbuild": "
|
|
58
|
-
"rollup-plugin-node-externals": "
|
|
55
|
+
"rollup": "4.21.2",
|
|
56
|
+
"rollup-plugin-dts": "6.1.1",
|
|
57
|
+
"rollup-plugin-esbuild": "6.1.1",
|
|
58
|
+
"rollup-plugin-node-externals": "7.1.3",
|
|
59
59
|
"sucrase": "3.34.0",
|
|
60
60
|
"tslib": "2.6.2",
|
|
61
61
|
"typescript": "^5.2.2"
|