This commit is contained in:
parent
65139bf8d0
commit
44431c4e66
71 changed files with 2262 additions and 1173 deletions
|
|
@ -4,11 +4,7 @@ import path from "node:path";
|
|||
const repoRoot = path.resolve(import.meta.dir, "..");
|
||||
const deploymentRoot = path.join(repoRoot, "deployment/docker/workspace-root");
|
||||
|
||||
const filesToSync = [
|
||||
"package.json",
|
||||
"bun.lock",
|
||||
"tsconfig.base.json"
|
||||
] as const;
|
||||
const filesToSync = ["package.json", "bun.lock", "tsconfig.base.json"] as const;
|
||||
|
||||
for (const fileName of filesToSync) {
|
||||
const source = path.join(repoRoot, fileName);
|
||||
|
|
@ -16,4 +12,3 @@ for (const fileName of filesToSync) {
|
|||
await copyFile(source, destination);
|
||||
console.log(`synced ${fileName}`);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue