Skip to content

Commit cb361f4

Browse files
committed
chore: rename private->dev
1 parent 4599fcd commit cb361f4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ workspace
5151
./scripts/compilation/tmp/*.mjs
5252

5353
.turbo
54-
turbo.private.json
54+
turbo.dev.json
5555
coverage
5656
dist
5757
dist-*

scripts/turbo/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ const { spawnProcess } = require("../utils/spawn-process");
33
const path = require("node:path");
44

55
const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey } = {}) => {
6-
const privateConfig = (() => {
6+
const devConfig = (() => {
77
try {
8-
return require("../../turbo.private.json");
8+
return require("../../turbo.dev.json");
99
} catch (e) {
1010
return {};
1111
}
@@ -14,8 +14,8 @@ const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey }
1414
"turbo",
1515
"run",
1616
task,
17-
`--concurrency=${privateConfig.concurrency ?? "100%"}`,
18-
`--output-logs=${privateConfig.outputLogs ?? "errors-only"}`,
17+
`--concurrency=${devConfig.concurrency ?? "100%"}`,
18+
`--output-logs=${devConfig.outputLogs ?? "errors-only"}`,
1919
];
2020

2121
const cacheReadWriteKey = process.env.AWS_JSV3_TURBO_CACHE_BUILD_TYPE ?? "dev";

0 commit comments

Comments
 (0)