primate 0.31.9 → 0.31.10
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 +1 -1
- package/src/hooks/register.js +2 -2
- package/src/start.js +1 -1
package/package.json
CHANGED
package/src/hooks/register.js
CHANGED
|
@@ -24,8 +24,8 @@ 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/
|
|
28
|
-
await app.stage(_static, FS.File.join(location.
|
|
27
|
+
// copy static files to build/static
|
|
28
|
+
await app.stage(_static, FS.File.join(location.static));
|
|
29
29
|
|
|
30
30
|
// publish JavaScript and CSS files
|
|
31
31
|
const imports = await FS.File.collect(_static, /\.(?:css)$/u);
|
package/src/start.js
CHANGED
|
@@ -37,7 +37,7 @@ export default async ($app, mode = "development") => {
|
|
|
37
37
|
app.build = new Build({
|
|
38
38
|
...o.exclude(app.get("build"), ["includes", "index", "transform"]),
|
|
39
39
|
outdir: app.runpath(app.get("location.client")).path,
|
|
40
|
-
resolveDir: app.
|
|
40
|
+
resolveDir: app.path.build.path,
|
|
41
41
|
}, mode);
|
|
42
42
|
|
|
43
43
|
const primate = await resolve(import.meta.url);
|