appstage 0.2.13 → 0.2.15
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/dist/bin.js +3 -2
- package/dist/index.cjs +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
- package/src/scripts/utils/buildClient.ts +3 -2
package/dist/bin.js
CHANGED
|
@@ -434,17 +434,18 @@ async function getEntryPoints(path) {
|
|
|
434
434
|
|
|
435
435
|
// src/scripts/utils/buildClient.ts
|
|
436
436
|
var entryClientPaths = ["ui/index", "client/index", "index", "src/index"];
|
|
437
|
-
async function buildClient({ watch, watchClient }, plugins) {
|
|
437
|
+
async function buildClient({ clientDir, watch, watchClient }, plugins) {
|
|
438
438
|
let clientEntries = await getEntryPoints(entryClientPaths);
|
|
439
439
|
let buildOptions = {
|
|
440
440
|
...commonBuildOptions,
|
|
441
441
|
entryPoints: clientEntries.map(({ path, name }) => ({
|
|
442
442
|
in: path,
|
|
443
|
-
out:
|
|
443
|
+
out: `${name}/index`
|
|
444
444
|
})),
|
|
445
445
|
bundle: true,
|
|
446
446
|
splitting: true,
|
|
447
447
|
format: "esm",
|
|
448
|
+
outdir: clientDir,
|
|
448
449
|
minify: process.env.NODE_ENV !== "development",
|
|
449
450
|
plugins
|
|
450
451
|
};
|
package/dist/index.cjs
CHANGED
|
@@ -399,17 +399,18 @@ const entryClientPaths = [
|
|
|
399
399
|
/**
|
|
400
400
|
* Builds the client-side code.
|
|
401
401
|
*/
|
|
402
|
-
async function buildClient({ watch, watchClient }, plugins) {
|
|
402
|
+
async function buildClient({ clientDir, watch, watchClient }, plugins) {
|
|
403
403
|
let clientEntries = await getEntryPoints(entryClientPaths);
|
|
404
404
|
let buildOptions = {
|
|
405
405
|
...commonBuildOptions,
|
|
406
406
|
entryPoints: clientEntries.map(({ path, name }) => ({
|
|
407
407
|
in: path,
|
|
408
|
-
out:
|
|
408
|
+
out: `${name}/index`
|
|
409
409
|
})),
|
|
410
410
|
bundle: true,
|
|
411
411
|
splitting: true,
|
|
412
412
|
format: "esm",
|
|
413
|
+
outdir: clientDir,
|
|
413
414
|
minify: process.env.NODE_ENV !== "development",
|
|
414
415
|
plugins
|
|
415
416
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -373,17 +373,18 @@ const entryClientPaths = [
|
|
|
373
373
|
/**
|
|
374
374
|
* Builds the client-side code.
|
|
375
375
|
*/
|
|
376
|
-
async function buildClient({ watch, watchClient }, plugins) {
|
|
376
|
+
async function buildClient({ clientDir, watch, watchClient }, plugins) {
|
|
377
377
|
let clientEntries = await getEntryPoints(entryClientPaths);
|
|
378
378
|
let buildOptions = {
|
|
379
379
|
...commonBuildOptions,
|
|
380
380
|
entryPoints: clientEntries.map(({ path, name }) => ({
|
|
381
381
|
in: path,
|
|
382
|
-
out:
|
|
382
|
+
out: `${name}/index`
|
|
383
383
|
})),
|
|
384
384
|
bundle: true,
|
|
385
385
|
splitting: true,
|
|
386
386
|
format: "esm",
|
|
387
|
+
outdir: clientDir,
|
|
387
388
|
minify: process.env.NODE_ENV !== "development",
|
|
388
389
|
plugins
|
|
389
390
|
};
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ const entryClientPaths = ["ui/index", "client/index", "index", "src/index"];
|
|
|
9
9
|
* Builds the client-side code.
|
|
10
10
|
*/
|
|
11
11
|
export async function buildClient(
|
|
12
|
-
{ watch, watchClient }: BuildParams,
|
|
12
|
+
{ clientDir, watch, watchClient }: BuildParams,
|
|
13
13
|
plugins?: Plugin[],
|
|
14
14
|
) {
|
|
15
15
|
let clientEntries = await getEntryPoints(entryClientPaths);
|
|
@@ -18,11 +18,12 @@ export async function buildClient(
|
|
|
18
18
|
...commonBuildOptions,
|
|
19
19
|
entryPoints: clientEntries.map(({ path, name }) => ({
|
|
20
20
|
in: path,
|
|
21
|
-
out:
|
|
21
|
+
out: `${name}/index`,
|
|
22
22
|
})),
|
|
23
23
|
bundle: true,
|
|
24
24
|
splitting: true,
|
|
25
25
|
format: "esm",
|
|
26
|
+
outdir: clientDir,
|
|
26
27
|
minify: process.env.NODE_ENV !== "development",
|
|
27
28
|
plugins,
|
|
28
29
|
};
|