mod-build 4.0.68 → 4.0.69

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.69
4
+
5
+ - Adding modal script to `STATIC_COPY_TARGETS`.
6
+
3
7
  ## 4.0.68
4
8
 
5
9
  - Avoided overriding the control's step configuration during the merge with the variation's steps and the default form config.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "4.0.68",
3
+ "version": "4.0.69",
4
4
  "description": "Share components for S3 sites.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -30,6 +30,10 @@ export const STATIC_COPY_TARGETS = [
30
30
  src: './src/accessible-components/progress-bar/progress-bar.min.js',
31
31
  dest: './accessible-components/progress-bar'
32
32
  },
33
+ {
34
+ src: './src/accessible-components/modal/modal.min.js',
35
+ dest: './accessible-components/modal'
36
+ },
33
37
  ];
34
38
 
35
39
  export const updateConfig = async (config) => {