@lambdacurry/arbor 0.21.46 → 0.21.47
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/arbor.js +6 -4
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16,7 +16,7 @@ var __export = (target, all) => {
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@lambdacurry/arbor",
|
|
19
|
-
version: "0.21.
|
|
19
|
+
version: "0.21.47",
|
|
20
20
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
21
21
|
keywords: [
|
|
22
22
|
"agents",
|
|
@@ -22137,7 +22137,8 @@ function legacyTarget() {
|
|
|
22137
22137
|
path: envPath ?? defaultPath,
|
|
22138
22138
|
defaultPath,
|
|
22139
22139
|
isolated: Boolean(envPath),
|
|
22140
|
-
named: false
|
|
22140
|
+
named: false,
|
|
22141
|
+
explicitProfile: false
|
|
22141
22142
|
};
|
|
22142
22143
|
}
|
|
22143
22144
|
function resolveTarget(opts) {
|
|
@@ -22171,7 +22172,8 @@ function resolveTarget(opts) {
|
|
|
22171
22172
|
defaultPath: defaultConfigPath(),
|
|
22172
22173
|
isolated: true,
|
|
22173
22174
|
profile: selected2,
|
|
22174
|
-
named: true
|
|
22175
|
+
named: true,
|
|
22176
|
+
explicitProfile: profileFlag !== undefined
|
|
22175
22177
|
};
|
|
22176
22178
|
}
|
|
22177
22179
|
function configureConfigTarget(opts) {
|
|
@@ -22266,7 +22268,7 @@ function defaultConfigOverwriteBlocked(opts) {
|
|
|
22266
22268
|
}
|
|
22267
22269
|
function loadConfig() {
|
|
22268
22270
|
const target = currentTarget();
|
|
22269
|
-
const envToken = process.env.ARBOR_TOKEN || undefined;
|
|
22271
|
+
const envToken = target.explicitProfile ? undefined : process.env.ARBOR_TOKEN || undefined;
|
|
22270
22272
|
const envUrl = process.env.ARBOR_API_URL || undefined;
|
|
22271
22273
|
if (target.named)
|
|
22272
22274
|
rejectSymlink(target.path, `Arbor profile ${target.profile}`);
|
package/package.json
CHANGED