@henderea/static-site-builder 1.10.23 → 1.10.24

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.
@@ -88,7 +88,8 @@ const copyPatterns = [];
88
88
  if(fs.existsSync(paths.publicDir)) {
89
89
  copyPatterns.push({
90
90
  from: paths.publicDir,
91
- to: paths.appBuild
91
+ to: paths.appBuild,
92
+ info: { minimized: true }
92
93
  });
93
94
  }
94
95
 
@@ -148,7 +148,8 @@ const copyPatterns = [];
148
148
  if(fs.existsSync(paths.publicDir)) {
149
149
  copyPatterns.push({
150
150
  from: paths.publicDir,
151
- to: paths.appDist
151
+ to: paths.appDist,
152
+ info: { minimized: true }
152
153
  });
153
154
  }
154
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henderea/static-site-builder",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
4
4
  "description": "A static site builder",
5
5
  "main": "index.js",
6
6
  "repository": "henderea/static-site-builder.git",