@jspsych/config 3.0.0 → 3.0.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jspsych/config
2
2
 
3
+ ## 3.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3401](https://github.com/jspsych/jsPsych/pull/3401) [`db7bcf82`](https://github.com/jspsych/jsPsych/commit/db7bcf82f6491ac8d02c7c4cf89e42d4ddcde1d9) Thanks [@jadeddelta](https://github.com/jadeddelta)! - allow JSON resolution in contrib repository for usage of package.json in versioning
8
+
3
9
  ## 3.0.0
4
10
 
5
11
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jspsych/config",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Shared (build) configuration for jsPsych packages",
5
5
  "type": "module",
6
6
  "exports": {
@@ -5,6 +5,6 @@
5
5
  "paths": {
6
6
  // map jspsych-contrib package imports directly to their source files
7
7
  "@jspsych-contrib/*": ["../*/src"]
8
- }
8
+ },
9
9
  }
10
10
  }
@@ -7,7 +7,5 @@
7
7
  "jspsych": ["../jspsych/src"],
8
8
  "@jspsych/*": ["../*/src"]
9
9
  },
10
- // allow resolving json modules in tests (needed for transitive imports of jspsych)
11
- "resolveJsonModule": true
12
10
  }
13
11
  }
package/tsconfig.json CHANGED
@@ -16,6 +16,7 @@
16
16
  "skipLibCheck": true,
17
17
  "forceConsistentCasingInFileNames": true,
18
18
  "noEmit": true,
19
- "isolatedModules": true // required by Sucrase
19
+ "isolatedModules": true, // required by Sucrase
20
+ "resolveJsonModule": true, // required for automatic package versioning and needed for transitive imports of jspsych
20
21
  }
21
22
  }