primate 0.31.10 → 0.31.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primate",
3
- "version": "0.31.10",
3
+ "version": "0.31.12",
4
4
  "description": "Polymorphic development platform",
5
5
  "homepage": "https://primatejs.com",
6
6
  "bugs": "https://github.com/primatejs/primate/issues",
@@ -24,6 +24,9 @@ const post = async app => {
24
24
  // copy static files to build/server/static
25
25
  await app.stage(_static, FS.File.join(location.server, location.static));
26
26
 
27
+ // copy static files to build/client/static
28
+ await app.stage(_static, FS.File.join(location.client, location.static));
29
+
27
30
  // copy static files to build/static
28
31
  await app.stage(_static, FS.File.join(location.static));
29
32
 
@@ -37,6 +40,8 @@ const post = async app => {
37
40
 
38
41
  // copy additional subdirectories to build/server
39
42
  await copy_includes(app, location.server);
43
+ // copy additional subdirectories to build
44
+ await copy_includes(app, "");
40
45
 
41
46
  if (await app.path.components.exists()) {
42
47
  // copy components to build/components