@replayio/app-building 1.27.0 → 1.28.0
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/index.d.ts +3 -2
- package/dist/index.js +13 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -113,7 +113,8 @@ interface ContainerConfig {
|
|
|
113
113
|
interface RepoOptions {
|
|
114
114
|
repoUrl: string;
|
|
115
115
|
cloneBranch: string;
|
|
116
|
-
|
|
116
|
+
/** If omitted, the container clones the repo but never commits or pushes. */
|
|
117
|
+
pushBranch?: string;
|
|
117
118
|
}
|
|
118
119
|
declare function loadDotEnv(projectRoot: string): Record<string, string>;
|
|
119
120
|
declare function buildImage(config: ContainerConfig): void;
|
|
@@ -121,7 +122,7 @@ declare function buildImage(config: ContainerConfig): void;
|
|
|
121
122
|
* Start a container (local Docker or remote Fly.io based on config).
|
|
122
123
|
* If flyToken and flyApp are set, starts remotely; otherwise locally.
|
|
123
124
|
*/
|
|
124
|
-
declare function startContainer(config: ContainerConfig, repo: RepoOptions): Promise<AgentState>;
|
|
125
|
+
declare function startContainer(config: ContainerConfig, repo: RepoOptions | null): Promise<AgentState>;
|
|
125
126
|
/**
|
|
126
127
|
* Stop a container by its state or registry entry.
|
|
127
128
|
*/
|
package/dist/index.js
CHANGED
|
@@ -215,19 +215,25 @@ function findFreePort() {
|
|
|
215
215
|
}
|
|
216
216
|
function buildContainerEnv(repo, infisical, extra = {}) {
|
|
217
217
|
const env = {
|
|
218
|
-
REPO_URL: repo.repoUrl,
|
|
219
|
-
CLONE_BRANCH: repo.cloneBranch,
|
|
220
|
-
PUSH_BRANCH: repo.pushBranch,
|
|
221
|
-
GIT_AUTHOR_NAME: "App Builder",
|
|
222
|
-
GIT_AUTHOR_EMAIL: "app-builder@localhost",
|
|
223
|
-
GIT_COMMITTER_NAME: "App Builder",
|
|
224
|
-
GIT_COMMITTER_EMAIL: "app-builder@localhost",
|
|
225
218
|
PLAYWRIGHT_BROWSERS_PATH: "/opt/playwright",
|
|
226
219
|
INFISICAL_TOKEN: infisical.token,
|
|
227
220
|
INFISICAL_PROJECT_ID: infisical.projectId,
|
|
228
221
|
INFISICAL_ENVIRONMENT: infisical.environment,
|
|
229
222
|
...extra
|
|
230
223
|
};
|
|
224
|
+
if (repo) {
|
|
225
|
+
env.REPO_URL = repo.repoUrl;
|
|
226
|
+
env.CLONE_BRANCH = repo.cloneBranch;
|
|
227
|
+
if (repo.pushBranch) {
|
|
228
|
+
env.PUSH_BRANCH = repo.pushBranch;
|
|
229
|
+
env.GIT_AUTHOR_NAME = "App Builder";
|
|
230
|
+
env.GIT_AUTHOR_EMAIL = "app-builder@localhost";
|
|
231
|
+
env.GIT_COMMITTER_NAME = "App Builder";
|
|
232
|
+
env.GIT_COMMITTER_EMAIL = "app-builder@localhost";
|
|
233
|
+
}
|
|
234
|
+
} else {
|
|
235
|
+
env.NO_REPO = "1";
|
|
236
|
+
}
|
|
231
237
|
if (process.env.DEBUG) {
|
|
232
238
|
env.DEBUG = process.env.DEBUG;
|
|
233
239
|
}
|