appstage 0.2.27 → 0.2.28
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 +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/scripts/build.ts +1 -1
package/dist/bin.js
CHANGED
|
@@ -693,7 +693,7 @@ async function build(params) {
|
|
|
693
693
|
if (params.useEnvFiles !== false) {
|
|
694
694
|
let envFiles = await getEnvFiles();
|
|
695
695
|
for (let envFile of envFiles) log(`Using ${envFile}`);
|
|
696
|
-
nodeArgs.
|
|
696
|
+
nodeArgs.unshift(...envFiles.map((file) => `--env-file=${file}`));
|
|
697
697
|
}
|
|
698
698
|
function handleServerRebuild() {
|
|
699
699
|
if (serverProcess) {
|
package/dist/index.cjs
CHANGED
|
@@ -615,7 +615,7 @@ async function build(params) {
|
|
|
615
615
|
if (params.useEnvFiles !== false) {
|
|
616
616
|
let envFiles = await getEnvFiles();
|
|
617
617
|
for (let envFile of envFiles) log(`Using ${envFile}`);
|
|
618
|
-
nodeArgs.
|
|
618
|
+
nodeArgs.unshift(...envFiles.map((file) => `--env-file=${file}`));
|
|
619
619
|
}
|
|
620
620
|
function handleServerRebuild() {
|
|
621
621
|
if (serverProcess) {
|
package/dist/index.mjs
CHANGED
|
@@ -589,7 +589,7 @@ async function build(params) {
|
|
|
589
589
|
if (params.useEnvFiles !== false) {
|
|
590
590
|
let envFiles = await getEnvFiles();
|
|
591
591
|
for (let envFile of envFiles) log(`Using ${envFile}`);
|
|
592
|
-
nodeArgs.
|
|
592
|
+
nodeArgs.unshift(...envFiles.map((file) => `--env-file=${file}`));
|
|
593
593
|
}
|
|
594
594
|
function handleServerRebuild() {
|
|
595
595
|
if (serverProcess) {
|
package/package.json
CHANGED
package/src/scripts/build.ts
CHANGED
|
@@ -45,7 +45,7 @@ export async function build(params: BuildParams) {
|
|
|
45
45
|
|
|
46
46
|
for (let envFile of envFiles) log(`Using ${envFile}`);
|
|
47
47
|
|
|
48
|
-
nodeArgs.
|
|
48
|
+
nodeArgs.unshift(...envFiles.map((file) => `--env-file=${file}`));
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
function handleServerRebuild() {
|